`// Online C compiler to run C program online
#include "stdio.h"
extern int var = 0;
int main(void)
{
var = 10;
return 0;
} `
Will this code work, if not why?
`// Online C compiler to run C program online
#include "stdio.h"
extern int var = 0;
int main(void)
{
var = 10;
return 0;
} `
Will this code work, if not why?