write a c/c++ program that takes a 5 digit number and
calculates 2 power that number and prints it?

Answer Posted / sudarshan

#include<stdio.h>
void main()
{
int a,b;
scanf("%d",&a);
b=a*a;
printf("%d",b);
getch();
}

Is This Answer Correct ?    6 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain heap and queue.

591


Can you think of a logic behind the game minesweeper.

2012


How can you increase the size of a dynamically allocated array?

647


What is the meaning of typedef struct in c?

600


Is there anything like an ifdef for typedefs?

708






How do I convert a string to all upper or lower case?

631


What is the use of pointers in C?

626


Tell us something about keyword 'auto'.

668


What is a macro?

659


State two uses of pointers in C?

642


Can one function call another?

630


Add Two Numbers Without Using the Addition Operator

357


A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?

1516


What is the general form of a C program?

601


How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?

598