What is the output of this code?
#include <stdio.h>
int main() {
register int x = 5;
printf("%d\n", x);
return 0;
}
Compilation Error
5
0
Undefined behaviour
This question is part of this quiz :
Storage Classes and Type Qualifiers in C