?
What will be the output of the following C code?
What will be the output of the following C code?
#include <stdio.h>
int main()
{
register auto int i = 10;
i = 11;
printf("%d\n", i);
}
#include <stdio.h>
int main()
{
register auto int i = 10;
i = 11;
printf("%d\n", i);
}
Join the Discussion
Login to post a comment or share your explanation.
Login