Identify the compiler’s response in the following C fragment while creating object module
int main()
{
int i = 10;
fi(i>0)
printf(“%d”,i);
return 0;
}
1
Only a lexical error
2
Only a syntactic error
3
Compilation error
4
None of the above
Identify the compiler’s response in the following C fragment while creating object module
int main()
{
int i = 10;
fi(i>0)
printf(“%d”,i);
return 0;
}