What will be the output of the following program?
#include
int main()
{
register x = 10;
int *p;
p=&x;
printf("%d ",*p);
return 0;
}
1
10
2
0
3
Address
4
Compilation error