The following contain several #include directives that may have problems. Which have one or more problems, and what problems?

a) ```
#include
```
b) ```
#include < iostream>
```
c) ```
#include “MyStream.h”
```
d) ```
#include “cctype “
```
e) ```
#include “This file does not exist on the system”
```

All Except a) and c)
b) The space between < and iostream makes preprocessor think the file name has a space at the front of the name. In part c), the system looks in the default directory then in the system directories as it does for . d) has space at the end of the file name. e) The file name is unlikely. At the least, the situation should be examined.

Computer Science & Information Technology

You might also like to view...

Right-clicking a worksheet tab allows the user to ________

A) copy the worksheet only B) move the worksheet only C) copy or move the worksheet D) neither copy or move the worksheet

Computer Science & Information Technology

To reduce file size, a JPG image format uses a lossless compression that discards some of the color information in an image, which reduces its original quality.?

Answer the following statement true (T) or false (F)

Computer Science & Information Technology