India Languages, asked by dainvincible1, 1 year ago

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

#include
int main()
{
display();
return 0;
}
void display()
{
printf("IndiaBIX.com");
}

Answers

Answered by Anonymous
0
display() is called before it is defined
Similar questions