What is the output of printf("%d")?
Answers were Sorted based on User's Feedback
Answer / apoorv
it will be give u garbage value....u can't be sure for d
value....
its depend on d complier which value he read recently...
and it will be a garbage....according to d programer...bcoz
he don,t knw which value has been recentyly read by d
compiler...!!
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / shakti singh khinchi
It will print garbage value & gives warning on compilation
like "too few arguments for format".
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vaisakh.r
printf("%d") will printf some garbage value since there is no varible specified in it.so compiler check the argument stack check offset depending on the format specifier print whats on that location, since we can't sure about that value say it will print some garbage value
| Is This Answer Correct ? | 0 Yes | 0 No |
What does new return if there is insufficient memory to make your new object?
what is the use of Namespace in c++.
Which programming language is best to learn first?
What are arrays c++?
Why is that unsafe to deal locate the memory using free( ) if it has been allocated using new?
What is the purpose of the noexcept keyword?
What is the hardest coding language to learn?
What is else if syntax?
What is command line arguments in C++? What are its uses? Where we have to use this?
Does c++ have finally?
What are the three forms of cin.get() and what are their differences?
What is the disadvantage of using a macro?