#include<stdio.h>
int main(void)
{
int a;
int count=0;
for(a=1;a<=10;a=a+1)
{
if(a>3)
count=count+1;
}
printf("%d numbers were greater than 3\n",count);
return 0;
}
why have the error of ERROR: variable 'file name' not defined ERROR: command 'file name' not found ERROR: cannot execute program 'file name'