Computer Science, asked by kripa1048, 7 months ago

Find output a=5,b=7 if(a>b): print("a is greater")

Answers

Answered by bairagi787
0

Answer:

your question is wrong because a=5,b=7 so,your condition is

if(a>b)=(5>7)

#include<stdio.h>

#include<conio.h>

main()

{

int a=5,b=7;

if(a>b)

printf("a is greater ");

else

printf("b is greater");

getch();

}

so,

second condition is true=

b is greater

Similar questions