Examveda
Examveda

What will be the output of the following C code having void return-type function?
#include <stdio.h>
void foo()
{
    return 1;
}
void main()
{
    int x = 0;
    x = foo();
    printf("%d", x);
}

A. 1

B. 0

C. Runtime error

D. Compile time error

Answer: Option D


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function