Why the output of the following program comes False

PHP Code: 
#include<stdio.h>
void main()
{
int a=15b=10c=5;
if(
a>b>c)
printf("True");
else
printf("False");


plzz tell me ... help needed
prateek Reviewed by prateek on . Turbo C | Weird and amazing Why the output of the following program comes False #include<stdio.h> void main() { int a=15, b=10, c=5; if(a>b>c) printf("True"); else printf("False"); Rating: 5