Write a program that takes a 5 digit number and calculates
2 power
that number and prints it.
Answers were Sorted based on User's Feedback
Answer / sushant shrivastava
include<math.h>
include<stdio.h>
int main()
{
int i,num;
printf("Enter the value of i");
scanf("%d",&i)
num=POW(i,2);
printf("%d%d",num);
}
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / anusha
#include<stdio.h>
#include<conio.h>
main()
{
unsigned long integer n;
long integer res=1;
int i=1;
clrscr()
printf("please enter 5 digit no:");
scanf("%ld",&n);
for(i=1,i<=n,i++);
{
res=(res*2);
}
printf("Result is %ld",res);
getch();
}
Is This Answer Correct ? | 7 Yes | 7 No |
Answer / usha
#include<stdio.h>
void main()
{
unsigned long int s=1;
int n;
scanf("%d%d",&n);
for(int i=0; i<n; i++)
{
s=s*2;
}
printf("result %ld",s);
getch();
}
Is This Answer Correct ? | 1 Yes | 3 No |
Answer / akshay
#include<stdio.h>
#include<conio.h>
//Develo0ed by Akshay p.Joy
void main()
{
unsigned long int a,s=1;
int i,j,k,l,m,n;
scanf("%d%d",&m);
for(i=0;i<2;++i)
{
s=s*m;
}
printf("result %ld",s);
getch();
}
Is This Answer Correct ? | 5 Yes | 11 No |
what is the use of #pragma pack, wer it is used?
difference between the array and linked list general difference related to memory
Input any no. and print all the the numbers that comes before it like this for e.g input = 4 0 01 012 0123 01234 plz answer it 2day
What is the use of define in c?
What are predefined functions in c?
What is volatile, register definition in C
What is chain pointer in c?
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
Can we declare variables anywhere in c?
What is modifier & how many types of modifiers available in c?
What is function what are the types of function?
Explain the use of 'auto' keyword in c programming?