what is upcasting in C++?
No Answer is Posted For this Question
Be the First to Post Answer
State the difference between pre and post increment/decrement operations.
how is returning structurs from functions?Show an eg?
what is Loop function? What are different types of Loops?
Why do we use the using declaration?
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 Member Functions in Classes?
What is a storage class? Mention the storage classes in c++.
Write a C++ program which will compute the volume of a sphere or a cylinder after prompting the user to type the first character for the shape name.
0 Answers An-Najah National University,
What is the basic structure of c++ program?
Is c++ vector a linked list?
Do you need a main function in c++?
What are the different data types present in C++?