Write a program that takes a 5 digit number and calculates
2 power that number and prints it
Answer Posted / makthar basha
Write a program that takes a 5 digit number and calculates
2 power that number and prints it
| Is This Answer Correct ? | 103 Yes | 24 No |
Post New Answer View All Answers
Are pointers really faster than arrays?
What is meant by realloc()?
Mention four important string handling functions in c languages .
What does typedef struct mean?
Why & is used in c?
How is pointer initialized in c?
What should malloc() do?
What are the different types of control structures in programming?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What does nil mean in c?
What is pointer in c?
Write the syntax and purpose of a switch statement in C.
What is double pointer?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings