What is the output of printf("%d")?
Answer Posted / hardik jasani
void main()
{
printf("%d");
}
getch();
Output:0
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Write about a nested class and mention its use?
What are the various arithmetic operators in c++?
Differentiate between late binding and early binding.
What is buffer and example?
Can recursive program be written in C++?
Describe public access specifiers?
In which header file does one find isalpha() a) conio.h b) stdio.h c) ctype.h
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.
What is binary object model?
What is a manipulator in c++?
Is java easier than c++?
Is c or c++ more useful?
What do you mean by static variables?
What is a null object in c++?
What is pure virtual function? Or what is abstract class?