int main()
{
register a=23;
auto int b;
b=a;
printf("%d ", a);
printf("%d ", b);
return -1;
}
The output of code is:

Posted on by