4) Write a program that takes a 5 digit number and
calculates 2 power
that number and prints it.
Answer Posted / sathishmani
#include<stdio.h>
#include<conio.h>
void main()
{
int a;
a=12345;
printf("\n The Result is ",a*a);
getch();
}
| Is This Answer Correct ? | 6 Yes | 18 No |
Post New Answer View All Answers
What is the meaning of ?
What is the most efficient way to store flag values?
What does return 1 means in c?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
What does sizeof int return?
How do you print only part of a string?
What is the explanation for the dangling pointer in c?
How many levels deep can include files be nested?
What’s the special use of UNIONS?
What are operators in c?
What is function what are the types of function?
write a program to find the given number is prime or not
Why does notstrcat(string, "!");Work?
What is a sequential access file?
what are # pragma staments?