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;
}
What do you by Function Overloading in C++?
0 Answers Akamai Technologies, Infogain,
There is a base class sub, with a member function fnsub(). There are two classes super1 and super2 which are sub classes of the base class sub.if and pointer object is created of the class sub which points to any of the two classes super1 and super2, if fnsub() is called which one will be inoked?
What are Agilent PRECOMPILERS?
Explain what happens when an exception is thrown in C++.
How to delete array of objects in C++? Proof by C++ code for proper deletion
Explain function prototypes in C++.
What are the costs and benefits of using exceptions?
What is an algorithm (in terms of the STL/C++ standard library)?
What does it mean to declare a function or variable as static?
What is the difference between an ARRAY and a LIST in C++?
Declare a pointer to a function that takes a char pointer as argument and returns a void pointer.
Explain the difference between method overriding and method overloading in C++?