Without using third variable write a code to swap two numbers.
No Answer is Posted For this Question
Be the First to Post Answer
How will you print a list of all unique words from a string which may contain repeated words?
Explain why C++ is not purely Object Oriented Language
Name the operators that cannot be overloaded.
What is constant keyword in C++? Illustrate its various uses.
0 Answers Akamai Technologies, Infogain,
C++ supports multiple inheritance. What is the “diamond problem” that can occur with multiple inheritance? Give an example.
What is Advantage and Use of THIS pointer in C++ – Scenarios?
Write a program to generate the Fibonocci Series in C++.
Is there a difference between class and struct?
What is pass by value & reference.
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-; } }
What does it mean to declare a member function as static in C++?
Find the Factorial of a number using a program.