Write a program that takes a 5 digit number and calculates 2
power
that number and prints it.
Answer / s.shanmugam24
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main(void)
{
int power,i;
i=2;
clrscr();
printf("enter the power values");
scanf("%d",&power);
i=pow(power);
printf("the power is",i);
}
| Is This Answer Correct ? | 2 Yes | 9 No |
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
i need all types of question paper releted to "c" and other language.
Explain what standard functions are available to manipulate strings?
write a programme to convert temperature from farenheit to celcius?
Did c have any year 2000 problems?
Difference between macros and inline functions? Can a function be forced as inline?
0 Answers HAL, Honeywell, Zomato,
What is ## preprocessor operator in c?
Disadvantages of C language.
Is register a keyword in c?
what is the height of tree if leaf node is at level 3. please explain
when to use : in c program?
What is difference between far and near pointers?