What is wrong with the following program?
What will be an ideal response?
```
// What is wrong with this program?
#include
using namespace std;
int main()
{
int c;
if ( ( c = cin.get() ) != EOF )
{
main();
cout << c;
} // end if
} // end main
```
Computer Science & Information Technology
You might also like to view...
Which technology was designed to enable CPU installation?
A) Hyper-Threading B) HyperTransport C) ZIF D) BTX
Computer Science & Information Technology
Every Java application is composed of at least one:
a. local variable b. instance variable c. public class declaration d. imported class
Computer Science & Information Technology