What's c++ used for?
No Answer is Posted For this Question
Be the First to Post Answer
Does c++ have finally?
Please post the model question paper of hal?
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
How long it will take to learn c++?
Explain the uses oof nested class?
Why do we need function?
Write about the local class and mention its use?
What is a character in c++?
Why are pointers used?
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
What is the difference between set and map in c++?
Define token in c++.