Search:
Forum
Beginners
what is the correct output? explain your
what is the correct output? explain your answer please
Nov 22, 2016 at 5:35pm UTC
mm20070689
(1)
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 UTC
skaa
(46)
9 49
Topic archived. No new replies allowed.
C++
Information
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs