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 modeling?
Differentiate between static and dynamic modeling.
Is c is a high level language?
Explain the difference between malloc() and calloc() function?
What are header files and explain what are its uses in c programming?
What is c++ used for today?
Tell us the use of fflush() function in c language?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is meant by errors and debugging?
about c language
What do you mean by command line argument?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
What is sorting in c plus plus?
How can I read data from data files with particular formats?
What are the keywords in c?