Examveda
Examveda

What will be the output of the following C code?
#include <stdio.h>
int const print()
{
    printf("example.com");
    return 0;
}
void main()
{
    print();
}

A. Error because function name cannot be preceded by const

B. example.com

C. example.com is printed infinite times

D. Blank screen, no output

Answer: Option B


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals