What is the output of printf("%d")?
Answer Posted / soundar
it will display only garbage value
| Is This Answer Correct ? | 10 Yes | 10 No |
Post New Answer View All Answers
What is the return value of the insertion operator?
Write a program to show polymorphism in C++?
Explain terminate() function?
How the endl and setw manipulator works?
Do class declarations end with a semicolon? Do class method definitions?
Which programming language's unsatisfactory performance led to the discovery of c++?
What are compilers in c++?
describe private access specifiers?
What is vector processing?
Give an example of run-time polymorphism/virtual functions.
If a header file is included twice by mistake in the program, will it give any error?
What are the advantages of c++ over c?
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort
Can member functions be private?