A
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;
}
int main()
{
for (int k = 0; k < 10; k++);
return 0;
}
- Correct Answer - Option(C)
- Views: 14
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.