Write a program that takes a 5 digit number and calculates 2
power
that number and prints it.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What do you mean by “this” pointer?

0 Answers  


Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);

2 Answers  


Which function should be used to free the memory allocated by calloc()?

0 Answers  


Is facebook written in c++?

0 Answers  


What is difference between n and endl in c++?

0 Answers  






Define the operators that can be used with a pointer.

0 Answers  


What is function overloading c++?

0 Answers  


Is swift faster than c++?

0 Answers  


Is dev c++ a good compiler?

0 Answers  


What does flush do?

0 Answers  


You want to link a c++ program to c functions. How would you do it?

0 Answers  


What does count ++ do in c++?

0 Answers  


Categories