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;
}
Post New Answer View All Answers
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
Please explain class & object in c++?
What are the advantages and disadvantages of B-star trees over Binary trees?
What do you mean by early binding?
How do I use turbo c++?
Tell us the size of a float variable.
Explain the difference between static and dynamic binding of functions?
What are the advantages of using typedef in a program?
What is copy constructor? Can we make copy constructor private in c++?
Which type does string inherit from?
Why cout is used in c++?
What is interface in oop?
Is c++ a high level language?
Write about the retrieval of n number of objects during the process of delete[]p?
Why cstdlib is used in c++?