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
When is the copy constructor called?
What is searching?
How do I download c++?
How do you flush std cout?
What are the various storage classes in C++?
What are virtual functions in c++?
what are function pointers?
Define a conversion constructor?
How to declare a pointer to an array of integers?
How many ways can a variable be initialized into in C++?
an integer constant must have atleast one a) character b) digit c) decimal point
How many types of comments are there in c++?
Can a program run without main?
What is the difference between object-oriented programming and procedural programming?
How the programmer of a class should decide whether to declare member function or a friend function?