Find the output for the following C program#include<stdio.h>void main(void);{int var1,var2,var3,minmax;var1=5;var2=5;var3=6;minmax=(var1>var2)?(var1>var3)?var1:var3:(var2>var3)?var2:var3;printf("%dn",minmax);}

 

This Question is not yet answered!

 
 

Related Answered Questions

 

Related Open Questions