Question.4
On a platform where int is 32 bits, a developer writes:
int
uint32_t val = 1; uint32_t result = val << 32;
What does the C standard say about the value of result?
result
Select Answer
0
1
Undefined behavior
Implementation-defined behavior