Inline parameters : What does the compiler do with the
parameters of inline function, that can be evaluated in
runtime ?
No Answer is Posted For this Question
Be the First to Post Answer
what is the size of a class which contains no member variables but has two objects??? is it 1 or 2??
What is vectorial capacity?
What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass
Why do we use string in c++?
Is c++ fully object oriented?
Should I learn c++ c?
What is a local reference?
Can constructor be private in c++?
What is the protected keyword used for?
Differentiate between an array and a list?
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
What is the type of this pointer in c++?