Examveda
Examveda

What will be the output of the following C code?
#include <stdio.h>
int main()
{
    printf("before continue ");
    continue;
    printf("after continue\n");
}

A. Before continue after continue

B. Before continue

C. After continue

D. Compile time error

Answer: Option D


This Question Belongs to C Program >> Control Structures

Join The Discussion

Related Questions on Control Structures