Nested IF_1


// Nested IF
//the ? As an alternative to IF

#include<stdio.h>
#include<conio.h>
void main()
{
 int i=5;
 ((i>=10) ?printf("Hello"):printf("Hi"));

getch();
}

Post a Comment

Previous Post Next Post