4) Write a program that takes a 5 digit number and
calculates 2 power
that number and prints it.
Answer Posted / manojpadhi04
please inform me the answer
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
Lists the benefits of c programming language?
What is the difference between int main and void main in c?
what is a constant pointer in C
Which is an example of a structural homology?
What is modeling?
Write a program to print "hello world" without using a semicolon?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Explain what is a pragma?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
How are pointers declared in c?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Does c have enums?
What is difference between && and & in c?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...