What is the output of printf("%d")?
Answer Posted / kanchan
%d prints integer value but we have to provide corresponding variable with it i.e..
printf("%d" n) here it prints value of n which is of integer type
printf("%d") will create a garbage value b'coz copiler is unknown of associated variable.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Describe Trees using C++ with an example.
Eplain extern keyword?
What is meant by entry controlled loop?
What do c++ programmers do?
Is c++ built on c?
What would happen on forgetting [], while deallocating an array through new?
What methods can be overridden in java?
What new()is different from malloc()?
A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Explain how the virtual base class is different from the conventional base classes of the opps.
What is isdigit c++?
Explain Memory Allocation in C/C++ ?
What is a local reference?
What is #include cmath?
Can a list of string be stored within a two dimensional array?