If we declare a variable in the beginning before main function without giving EXTERN keyword, will it be taken as a static global variable(can be accessed only in that file) or can we able to access it from other files? For example:
#include<stdio.h>
int k;
main()
{
}