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
What is the error in the code below and how should it be corrected?
Explain virtual destructor?
What is the best book for c++ beginners?
What is c++ coding?
Can I create my own functions in c++?
What is the use of endl in c++?
Why is c++ not purely object oriented?
Which c++ compiler is best?
What are associate containers?
What is DlgProc?
What is the difference between the functions memmove() and memcpy()?
Can we sort map in c++?
What is operators in c++?
What is the use of :: operator in c++?
What is == in programming?