Describe about storage allocation and scope of global, extern, static, local and register variables?
1259Can there be at least some solution to determine the number of arguments passed to a variable argument list function?
1013How do you declare A pointer to function which receives an int pointer and returns a float pointer
1229Post New C++ General Questions
How can you link a c program with a c function?
How can you create a virtual copy constructor?
What are the steps in the development cycle?
What are the characteristics of friend functions?
Should I learn c or c++ first?
Explain what are mutator methods in c++?
How can you specify a class in C++?
What is c++ redistributable?
What does asterisk mean in c++?
Is c++ a difficult language?
write a porgram in c++ that reads an integer and print the biggest digit in the number
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
How can a called function determine the number of arguments that have been passed to it?
What is copy constructor? Can we make copy constructor private in c++?
What is the use of setfill in c++?