Vidyalelo
C Programming · Q83

Function

Programming · C Programming · question 83

Q83

What will be the output of the following C code? #include int main() register const int i = 10; i = 11; printf("%d ", i);

A.
10
B.
Compile time error
Answer
C.
Undefined behaviour
D.
11

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board