Computer Science, asked by lokeshdot6229, 1 year ago

#include int main() { int a = 10, b = 20, c = 30; if (c > b >
a.{ printf("true"); } else { printf("false"); } getchar(); return 0; }

Answers

Answered by Mukeshgorain338
9

Answer:

Here is you correct program

and your output is true

Explanation:

#include<stdio.h>

#include<conio.h>

void main()

{

int a= 10,b=20,c=30;

if (c>b)

{

if (b>a)

{

printf("True");

}

}

else {

printf("false");

}

getchar();

return 0;

}

Similar questions