What is the output of this C code?
#include <stdio.h> void main() { int x = 1, z = 3; int y = x << 3; printf( "%dn", y ); }
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option D
Explanation :
Be The First To Comment