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
You might also like to view...
The correct order of precedence from highest to lowest is:
A. ++ * + < && = B. ++ * + > && == C. && < ++ < * ! D. ++ ( ) * + < =
The ________ operator is used to search for a range of values
Fill in the blank(s) with correct word
?A one-sided tag contains an opening tag that tells the browser to turn a feature on and apply it to the content that follows, and a closing tag that turns off the feature.
Answer the following statement true (T) or false (F)
Which Recovery Console command lists the contents of the selected directory on the system partition?
A. dir B. del C. disable D. diskpart