Difference between Call by pointer and by reference.
No Answer is Posted For this Question
Be the First to Post Answer
explain the term 'resource acquisition is initialization'?
What is a constructor initializer list?
What does malloc return in C and C++?
What is an abstract class in C++
0 Answers SwanSoft Technologies,
How to run C++ program in cmd
Write a C++ Program to Find Sum and Average of n numbers using for loop.
How will you execute a stack using a priority queue? (Push and pop should be in O (1)).
What is the difference between creating an object, using 'new' and using 'malloc'?
What is a virtual function in C++?
What's the value of the expression 5["abxdef"]?
How do you write a function that can reverse a linked-list in C++?
Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }