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-;
}
}
Define type casting in C++.
Find the Factorial of a number using a program.
How to reverse a string in C++
What is the 4 difference between delete[] and delete?
What is C++11?
What is the meaning of the following declaration: int *const *const *i?
What is the difference between public, private, and protected inheritance?
Explain the importance of method overloading in C++?
0 Answers Akamai Technologies, Infogain,
What is the difference between creating an object, using 'new' and using 'malloc'?
What is Boyce Codd Normal form?
Tell me about virtual function
How does stack look in function calls? When does stack overflow? What can you do to remedy it?