vault backup: 2024-09-18 11:32:12
This commit is contained in:
		| @@ -31,5 +31,12 @@ printf("%d", i < j || k); | ||||
| > 4. Write a single expression whose value is either `-1`, `0`, or `1` depending on whether `i` is less than, equal to, or greater than `j`, respectively. | ||||
|  | ||||
| ```c | ||||
| (i ) | ||||
| ``` | ||||
| /* | ||||
| 	If i < j, the output should be -1. | ||||
| 	If i == j, the output should be zero | ||||
| 	If i > j, the output should be 1. | ||||
| */ | ||||
| (i > j) - (i < j) | ||||
| ``` | ||||
|  | ||||
| > 6. Is the following `if` statement lega | ||||
		Reference in New Issue
	
	Block a user
	 zleyyij
					zleyyij