Q. Will the following C code compile without any error?
Code:#include <stdio.h>
int main()
{
for (int k = 0; k < 10; k++);
return 0;
}
β
Correct Answer: (C)
Depends on the C standard implemented by compilers