What is functions syntax in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is functions syntax in c++?
What is the use of string 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
What's the hardest coding language?
How does throwing and catching exceptions differ from using setjmp and longjmp?
the first character in the variable name must be an a) special symbol b) number c) alphabet
When do we run a shell in the unix system? How will you tell which shell you are running?
Explain friend class?
How much do coding jobs pay?
Can c++ do everything c can?
Can a constructor be private?
what is data abstraction in C++?