Question 33
Answer saved
Marked out of 1.00
What will be the output of the following C code?
1
2
#include<stdio.h>
#include<string.h>
3
#include<conio.h>
4
int main()
5日{
6
7
8
9
int a=13,b=20;
if(a==15||b>30)
printf("Hello");
else
10
printf("Sorry");
11
return 0;
12}
Oa. Compile error
Ob. Nothing
c. Sorry
Od. Hello
Clear my choice