Answer the following statements true (T) or false (F)
1. It is legal to assign C-string variables.
2. The = sign used to give a variable an initial value in a definition,
```
char ch = ‘A’;
```
is different from the = sign in an assignment.
```
ch = ‘B’;
```
3. The C-string library functions use the null terminator to decide when to stop
processing.
4. The C-string library functions are safe and require no special care.
5. The C-string library function strcmp compares two strings for equal length.
1. False
2. True
3. True
4. False
5. False
Computer Science & Information Technology
You might also like to view...
The UPPER function will capitalize every character of a text string
Indicate whether the statement is true or false
Computer Science & Information Technology
The ______________ describes how the function will work.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology