What is function prototyping?
No Answer is Posted For this Question
Be the First to Post Answer
Where is atoi defined?
What is &x in c++?
Is recursion allowed in inline functions?
What is extern c++?
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?
What type of question are asked in GE code writing test based on c++ data structures and pointers?
What problems might the following macro bring to the application?
What are special characters 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
what are the decision making statements in C++? Explain if statement with an example?
What is the difference between global int and static int declaration?
What is name hiding in c++?