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 are the advantages of external class?
What is a const pointer?
Why double pointer is used in c?
What is the difference between procedural and functional programming?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
What's the difference between calloc() and malloc()?
what is y value of the code if input x=10 y=5; if (x==10) else if(x==9) elae y=8; a.9 b.8 c.6 d.7
convert 0.9375 to binary
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
Is malloc memset faster than calloc?