What is the output of printf("%d")?
Answer Posted / sathya
it is the integer in decimal form..
#include<stdio.h>
main()
{
int sum;
sum=6+3;
printf("%d\n",sum);
}
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
Will the following program execute?
What is iterator in c++?
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
What are the effects after calling the delete this operator ?
What are virtual functions in c++?
When do we run a shell in the unix system? How will you tell which shell you are running?
When do we run a shell in the unix system?
Can char be a number c++?
what are the characteristics of Class Members in C++?
What do you mean by early binding?
Can c++ do everything c can?
What are the characteristics of friend functions?
Which format specifier is used for printing a pointer value?
What is function overloading in C++?
Explain about vectors in c ++?