What are the basic data types used in c++?
No Answer is Posted For this Question
Be the First to Post Answer
difference between the c++ and c languages
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
Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?
How is an Abstract Base Class(ABC) related to an "Abstract Data Type" (ADT)
What is code reusability in c++?
write a function signature with various number of parameters.
Does c++ have foreach?
What is static function and static class?
Why cout is used in c++?
What is the difference between "overloading" and "overridding"?
Explain container class.
Will this c++ program execute or not?