Can class objects be passed as function arguments?
No Answer is Posted For this Question
Be the First to Post Answer
write a function signature with various number of parameters.
What is a buffer c++?
If a base class declares a function to be virtual, and a derived class does not use the term virtual when overriding that class, is it still virtual when inherited by a third-generation class?
If you want to share several functions or variables in several files maitaining the consistency how would you share it?
What do you mean by translation unit in c++?
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1
Out of fgets() and gets() which function is safe to use and why?
What do you mean by global variables?
What is bubble sort c++?
Why c++ is so important?
How const int *ourpointer differs from int const *ourpointer?
Describe about storage allocation and scope of global, extern, static, local and register variables?