Look at the below given code in C – program.
int main()
{
int i = 10;
whlie(i--)
printf(“TESTBOOK\n”);
}
Identity the compiler’s response about the above given code while creating the object- module1
Prints TESTBOOK 10 times
2
Prints TESTBOOK 9 times
3
Lexical Error
4
Syntactic Error