What is the output of the following Code?
#include stdio.h 
Void main()
{
int i = 0 , j = 5 , k = 6 ;
m = i++ || j++ || k++ ;
printf(" %d %d %d %d ", m , i , j , k);
}


Posted on by