How many storage classes are available in C++?
There are primarily four storage classes in C, viz. automatic, register, static, and external.
| Is This Answer Correct ? | 0 Yes | 0 No |
Discuss the effects occur, after an exception thrown by a member function is unspecified by an exception specification?
What does return 0 do in c++?
What are pointers used for c++?
What is a container class? What are the types of container classes?
How java is different from c and c++?
You have to take 2 arrays of length 10. Input the values of array 1 from the user. Then copy the values of array 1 to array 2 in ascending order For example if user enters 9, 5, 6, 8, 1, 0, 2, 7, 4, 3 then copy the smallest element i.e. 0 first followed by 1, 2 and so
How do c++ struct differs from the c++ class?
What are the different operators in C++?
List out some of the object-oriented methodologies?
Write a program to find the Fibonacci series recursively.
Write a corrected statement in c++ so that the statement will work properly. x + y=z;
What is an overflow error?