write a c/c++ program that takes a 5 digit number and
calculates 2 power that number and prints it?
Answer Posted / parth ujenia
The condition is input take "5 digit" !
and according to above C prog
output of:12345
is: 27825
because range of integer data type is -32768 to 32767.
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
Is c still relevant?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
What are the functions to open and close the file in c language?
What do you mean by scope of a variable in c?
Where are c variables stored in memory?
What does the file stdio.h contain?
Explain what are global variables and explain how do you declare them?
What is a lvalue
How can you tell whether two strings are the same?
What is a void pointer? When is a void pointer used?
Write a program to generate the Fibinocci Series
What is strcpy() function?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Why do we need a structure?