Write a program to concatenate two strings.
No Answer is Posted For this Question
Be the First to Post Answer
Which is best c++ or java?
What do manipulators do?
What header file is needed for exit(); a) stdlib.h b) conio.h c) dos.h
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 default parameters? How are they evaluated in c++ function?
What is else if syntax?
What are c++ redistributables?
write a program that a 5 digit number and calculates 2 power that number and prints it.
2 Answers Vimukti Technologies,
How would perform Pattern Matching in C++?
How does the copy constructor differ from the assignment operator (=)?
Comment on assignment operator in c++.
what are difference between c and c++?