What is general format for a prototype?
No Answer is Posted For this Question
Be the First to Post Answer
What do the keywords volatile and mean mutable?
Distinguish between a # include and #define.
What is auto used for in c++?
Given an array of size N in which every number is between 1 and N, determine if there are any duplicates in it. You are allowed to destroy the array if you like. [ I ended up giving about 4 or 5 different solutions for this, each supposedly better than the others ].
What are the basic data types used in c++?
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
What is the difference between a reference and a pointer?
write a program to insert an element into an array
Does c++ support exception handling?
What is #include cstdlib in c++?
Write a program to find the Factorial of a number
How much is c++ certification?