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 |
which type of question asked from c / c++ in interview.
character array A[12] can hold
Explain the meaning of keyword 'extern' in a function declaration.
What is signed and unsigned?
What is the return type of sizeof?
What is the difference between text and binary modes?
What are structures and unions? State differencves between them.
What is pointer & why it is used?
write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
Which command is more efficient? *(ptr+1) or ptr[1]
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
What is the difference between array and pointer?