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
What is conditions when using boolean operators?
Explain the virtual inheritance in c++.
Write a function that swaps the values of two integers, using int* as the argument type?
Define macro.
Explain unexpected() function?
Is eclipse good for c++?
What are namespaces in c++?
How would you obtain segment and offset addresses from a far address of a memory location?
What is a storage class?
What is the difference between set and map in c++?
Explain how the virtual base class is different from the conventional base classes of the opps.
How would you differentiate between a pre and post increment operators while overloading?
Is it possible to have a recursive inline function in c++?
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 dynamic and static typing?