#include int main( void ) { int n, j, k; k = j = n = 4; printf( "n=%d, j=%d, k=%d\n", n, j, k ); n += j = 3; printf( "n=%d, j=%d\n", n, j ); }