Why c++ does not have finally?
No Answer is Posted For this Question
Be the First to Post Answer
Can we change the basic meaning of an operator in c++?
what is the behaviour of C and C++ compiler for the below statements. int *p; p = malloc(100); Is the behaviour same ? or different ?
What do you mean by function and operator overloading in c++?
Which one of the following describes characteristics of "protected" inheritance? a) The base class has access only to the public or protected members of the derived class. b) The derived class has non-public, inheritable, access to all but the private members of the base class. c) The derived class has access to all members of the base class. d) The private members of the base class are visible within the derived class. e) Public members of the derived class are privately accessible from the base class.
What are inline functions? What is the syntax for defining an inline function?
In inline " expression passed as argument are evalauated once " while in macro "in some cases expression passed as argument are evaluated more than once " --> i am not getting it plz help to make me understand....
0 Answers College School Exams Tests, CS,
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
How do you instruct your compiler to print the contents of the intermediate file showing the effects of the preprocessor?
Is empty stack c++?
Is there anything you can do in C++ that you cannot do in C?
Write a program using GUI concept for the scheduling algorithms in Operating system like SJF,FCFS etc..
What is the purpose of extern storage specifier?