Question: 34
(Choose 1 answer)
What will be the output of the following C code snippet?
#include <stdio.h>
int main() {
int x = 10;
if (x > 5)
if (x > 15)
printf("High");
else
printf("Medium");
FJOVERFLOW.Com
else
printf("Low");
return 0;
A. High
B. Medium
C. Low
D. No output