Q:

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

0

Find out the error

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

 


  1. display() doesn\\\\\\\'t get invoked
  2. display() is called before it is defined
  3. None of these
  4. No error

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Correct Answer:

display() is called before it is defined

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C Programming Multiple Choice Questions And Answers

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
What is the output?#include int main() { int i = 0... >>
<< Find out the Output int fun(char *str1) { char *st...