What is the output of printf("%d")?
Answer Posted / ashif ali
it will display only garbage value because
int a=12;
printf("%d");
output=12
| Is This Answer Correct ? | 8 Yes | 8 No |
Post New Answer View All Answers
How much is c++ certification?
Write about the use of the virtual destructor?
What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass
Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes
List the types of polymorphism in c++?
What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard
In what situations do you have to use initialization list rather than assignment in constructors?
Differentiate between realloc() and free().
What are the two types of comments?
How long it will take to learn c++?
Implement stack operations with pointers with appropriate exception checks.
What is a manipulative person?
Why cstdlib is used in c++?
Do you know the problem with overriding functions?
What happens when the extern "c" char func (char*,waste) executes?