Identify the error in the following program.
include<iostream>
using namespace std;
void main()
{
int num[]={1,2,3,4,5,6};
num[1]==[1]num ? cout<<"Success" : cout<<"Error";
}
What is Copy Constructor?
What kind of problems does name mangling cause?
What are "pure virtual" functions?
0 Answers Adobe, Alter, iNautix,
Define an Abstract class in C++?
What are the major differences between C and C++?
C++ supports multiple inheritance. What is the “diamond problem” that can occur with multiple inheritance? Give an example.
Identify the error in the following program. #include<iostream.h> void main() { int i = 0; i = i + 1; cout « i « " "; /*comment *//i = i + 1; cout << i; }
Write a program to input an integer from the keyboard and display on the screen “WELL DONE” that many times.
Write a C++ program to print strings in reverse order.
What is Boyce Codd Normal form?
What is conversion constructor in C++
What is C++11?