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
why is iostream::eof inside a loop condition considered wrong?
How do you establish a has-a relationship?
What are c++ templates used for?
What is c++ library?
what are the decision making statements in C++? Explain if statement with an example?
Why c++ does not have finally?
What is the use of structure in c++?
Write a struct time where integer m, h, s are its members?
What is c++ namespace?
Is java made in c++?
What is :: operator in c++?
If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?
What is setiosflags c++?
how to explain our contribution in the project?
Explain the scope of resolution operator.