write a program that a 5 digit number and calculates 2
power that number and prints it.
Answer Posted / ayushi rastogi
/* We assume that user enter 5 digit No */
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
double No,length=2;
double pwrNo;
printf("Please Enter the 5 digit No.:");
printf("\n");
scanf("%d",&No);
pwrNo=pow(No,2);
printf("\n");
printf("Power of %u No is %u",No,pwrNo);
}
| Is This Answer Correct ? | 6 Yes | 5 No |
Post New Answer View All Answers
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
Why is c++ not purely object oriented?
What is the maximum combined length of command line arguments including the space between adjacent arguments?
What is object oriented programming (oop)?
Why do we use structure in c++?
What is the role of C++ shorthand's?
What is purpose of abstract class?
What is switch case in c++ syntax?
What is the use of setprecision in c++?
Explain what is oop?
What do you mean by late binding?
What is the purpose of the "delete" operator?
How can you differentiate between inheritance and implementation in c++?
What is the use of data hiding?
When is the copy constructor called?