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 are the methods of exporting a function from a dll?
What are guid?
Why is main an int?
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
What is difference between c++ and c ++ 14?
What do you mean by delegate? Can a user retain delegates?
What is class syntax c++?
What is a container class? What are the types of container classes in c++?
What is the difference between #import and #include?
Does c++ have finally?
What is searching? Explain linear and binary search.
What are the types of array in c++?
Can we use this pointer inside static member function?
Why is c++ still used?
Explain shallow copy?