Home » Technical Questions » Programming

What is the output of this C code? #include void main() { int x = 1, z = 3; int y = x << 3; printf( "%dn", y ); }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!