C Quick Refresher
Player version:
3.5.8
Video url:
Video volume:
Video time:
Video duration:
Video resolution:
x
[x]
Mini player
xD7

if structure program.
What is the output of the following program?
int main()
{
int a, b, c;
a = 5;
b = 10;
c = 7;
if(a>b && a>c)
printf("%d", a);
else if(b>c)
printf("%d", b);
else
printf("%d", c);
}

No Comments..!


Select Course...