Examveda
Examveda

What will be the output of the following C code?
#include <stdio.h>
void main()
{
    int k;
    for (k = -3; k < -5; k++)
        printf("Hello");
}

A. Hello

B. Infinite hello

C. Run time error

D. Nothing

Answer: Option D


This Question Belongs to C Program >> Control Structures

Join The Discussion

Related Questions on Control Structures