Examveda
Examveda

What will be the output of the following C code?
#include <stdio.h>
int main()
{
    int a = 0, i = 0, b;
    for (i = 0;i < 5; i++)
    {
        a++;
        continue;
    }
}

A. 2

B. 3

C. 4

D. 5

Answer: Option D


This Question Belongs to C Program >> Control Structures

Join The Discussion

Related Questions on Control Structures