vault backup: 2024-10-01 20:56:24

This commit is contained in:
zleyyij 2024-10-01 20:56:24 -06:00
parent 4b90cf2c2d
commit a8b53fdccb

View File

@ -4,3 +4,23 @@ a. `short unsigned int`
b. `short float`
c. `long double`
d. `unsigned long`
Answer:
b. `short float`
> 4. If `c` is a variable of type `char`, which of the following statements is illegal?
```c
char c;
// A:
i += c; // i has type int
// B:
c = 2 * c - 1;
// C:
putchar(c);
// D:
printf(c);
```
Answer:
D is incorrect because `printf` operates on strings.