C Essentials Part — 1 Module 3 Test

C Essentials Part — 1 Module 3 Test

She stared. Why both "MEDIUM" and "LOW"?

#include <stdio.h> int main() { int a, b, sum; scanf("%d %d", &a, &b); sum = a + b; if (sum > 100) printf("HIGH"); if (50 <= sum <= 100) printf("MEDIUM"); else printf("LOW"); return 0; } c essentials part 1 module 3 test

One last question: "Which statement correctly reads a single character and ignores whitespace?" She chose: scanf(" %c", &ch); — the space before %c consumes newline or space. She stared

She hit . Input: 75 30 → Sum = 105. Output: HIGH . Good. Input: 20 40 → Sum = 60. Output: MEDIUMLOW — Error! She hit

Then she remembered — Module 3’s hidden trap: 50 <= sum <= 100 is parsed as (50 <= sum) <= 100 . (50 <= 60) is 1 , then 1 <= 100 is always true. So the second if always runs, and if the first if fails, the else prints too.

Scroll to Top