A
Q. What is the output of C Program?
Code:
int main()
{
int k;
for(k=1; k <= 5; k++);
{
printf("%d ", k);
}
return 0;
}
{
int k;
for(k=1; k <= 5; k++);
{
printf("%d ", k);
}
return 0;
}
- Correct Answer - Option(C)
- Views: 13
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.