Kavya TKnowledge Contributor
Is there any difference between following declarations?
Is there any difference between following declarations?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Questions | Answers | Discussions | Knowledge sharing | Communities & more.
extern int fun(); declaration in C is to indicate the existence of a global function and it is defined externally to the current module or in another file.
int fun(); declaration in C is to indicate the existence of a function inside the current module or in the same file.
Workspace Report ErrorsKindly mention the details of the error here… [Your Name] [Your Email] Online C Compiler/* Note: GCC Compiler (32 Bit Linux Platform). */ #include int main() { printf(“Weclome to IndiaBIX.com..!”); return 0; } View Answer C Compiler Report Discuss in Forum