#include <stdio.h> register int p; void main() { printf("%d", p); }
Compilation error
main.c:2:18: error: register name not specified for ‘p’ register int p;
Previous Question Next Question
Your comments will be displayed only after manual approval.