what is the correct output? explain your answer please

Nov 22, 2016 at 5:35pm
what is the correct output? explain your answer please

#define PRODUCT(x) ( x * x )
main( )
{
int i = 3, j, k ;
j = PRODUCT( i++ ) ;
k = PRODUCT ( ++i ) ;
printf ( "\n%d %d", j, k ) ;
}
Nov 22, 2016 at 5:42pm

9 49
Topic archived. No new replies allowed.