From the below code how to print global value:
Conditions are that, we must not use extern keyword, should not comment the local initialization & should not shift the printf function.
#include <stdio.h>
int a = 20;
int main()
{
int a = 10;
printf("%d",a);
}
I expect the output of 20
.