Input
Output
#include<stdio.h> void main(){ int a=12,b=7,c=5; if(a>b) { if(a>c){ printf("Print the value of a %d",a); } else{ printf("Print the value of c %d",c); } } else{ if(b>c){ printf("Print the value of b %d",b); } else{ printf("Print the value of c %d",c); } } }