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...

In a letter, the name and street address of the recipient is called the ________

A) letterhead B) inside address C) salutation D) body

Computer Science & Information Technology

When you need to know that someone has received and viewed an e-mail message that you sent to him, you can request a(n) ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

Tom sends out many e-mails containing secure information to other companies. What concept should be implemented to prove that Tom did indeed send the e-mails?

A. Authenticity B. Nonrepudiation C. Confidentiality D. Integrity

Computer Science & Information Technology

Playing a video or audio file on a computer has traditionally required a program, known as a helper program or a ____, that can both unpack the relevant container and decode the video and audio streams.

A. plugin B. container C. codec D. stream

Computer Science & Information Technology