-
What will be the output of the following C code?
#include <stdio.h>
int main()
{
register auto int num = 12;
num = 13;
printf("%d\n", num);
}
-
- 12 13
- 13 12
- 12
- 13
- Compilation Error
Correct Option: E
Compilation Error
main.c: In function ‘main’:
main.c:4:9: error: multiple storage classes in declaration specifiers
register auto int num = 12;