- This topic has 2 replies, 3 voices, and was last updated 14 years, 1 month ago by .
Viewing 2 reply threads
Viewing 2 reply threads
- The forum ‘C Programming’ is closed to new topics and replies.
Home › Forums › C Programming › Help with this C coding
help write an application in C that asks user about a number and computes the 2n (two to the power of n). Print result to the screen.
try:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
<br /> /****************************************************************<br /> * File Name : c:programshelptempCG.cpp<br /> * Date : November,17,2008<br /> * Comments : new project<br /> * Compiler/Assembler :<br /> *<br /> *<br /> *<br /> *<br /> *<br /> * Program Shell Generated At: 7:02:58 p.m.<br /> =-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/<br /> <br /> <br /> #include < stdio.h ><br /> //#include < string.h ><br /> //#include < conio.h ><br /> //#include < math.h ><br /> //#include < iomanip ><br /> //#include < ctype.h ><br /> <br /> <br /> <br /> <br /> //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ FUNCTION PROTOTYPES @@@@@@@@@@@@@@@@@@@@@@@@@@<br /> <br /> <br /> <br /> //##################################################################################<br /> <br /> <br /> //main function ******************************<br /> <br /> int main ( )<br /> {<br /> <br /> <br /> int number = 0;<br /> <br /> printf ( "Enter a number to square " );<br /> scanf ( "%i" , & number );<br /> printf ( "the square is %i n " , number * number );<br /> return 0;<br /> <br /> <br /> <br /> <br /> }<br /> <br /> <br /> |
I hope this is program of you assignment. :lol: Any way If you want to calculate 2 to power n(2^n) Please try this piece of code.
/***********************************************
Program to Calculate 2 to power n (2^n)
***********************************************/
#include
int main()
{
int n, i , pow = 1;
printf(“Enter the number (n):: “);
scanf(“%d” , &n);
for(i = 0; i < n; i++)
{
pow = pow * 2;
}
printf(“Result is :: %d”, pow);
}
Please feel to revert back.
Thanks
Gaurav