6 lines
208 B
Markdown
6 lines
208 B
Markdown
> 2. The following program fragments illustrate the logical operators. Show the output produced by each, assuming that `i`, `j`, and `k` are `int` variables.
|
|
|
|
a. `i = 10; j = 5;`
|
|
```
|
|
printf("%d", !i < j);
|
|
``` |