Friday, November 20, 2009

What will be out put of this program:
main( )

{

int i=3, j=0;

if( i==3 && j++ )

printf("%d %d",i , j ) ;

else

printf("%d %d ", i , j ) ;

}

Also Give explaination.

No comments: