1. 

Point out the error in the following program (if it is compiled with Turbo C compiler).

#include<stdio.h>
int main()
{
    display();
    return 0;
}
void display()
{
    printf("LearnFrenzy.com");
}


A. No error
B. display() doesn't get invoked
C. display() is called before it is defined
D. None of these