What is the difference between directly assigning the result of left shift operation to a variable and the left shift assignment operation in C – stackoverflow.com
In the following expression, the result of the left shift operation is assigned to the variable 'i'. int i; i = 7 << 32; printf("i = %d\n",i); In the following expression, the left shift ...
0 Comment to "What is the difference between directly assigning the result of left shift operation to a variable and the left shift assignment operation in C – stackoverflow.com"
0 Comment to "What is the difference between directly assigning the result of left shift operation to a variable and the left shift assignment operation in C – stackoverflow.com"
Post a Comment