#include <stdio.h> int main(void) { int a = 4; int b = 8; int c = 8; printf("max number is %d", (a>b?(a>c?a:c):(b>c?b:c))); return 0; }