Write a program that takes a 5 digit number and calculates 2
power that number and prints it.
Answer / srikanth u
data num;
digit=today();
power=digit*digit;
run;
proc print data=num;
run;
I hope it will be the answer, if its wrong, please let me know the correct way.
Thank you.
| Is This Answer Correct ? | 1 Yes | 1 No |
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
write a program to print the one dimensional array.
Under what circumstances does a name clash occur?
What are pointers?
0 Answers Accenture, Tavant Technologies, Zensar,
how to generate the length of a string without using len funtion?
What's the best way to declare and define global variables?
write a programe to find the factorial of given number using recursion
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
How can I copy just a portion of a string?
What is wrong with this declaration?
Is python a c language?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory