Q:

WHAT IS STATIC FUNCTION IN C?

belongs to collection: C INTERVIEW QUESTIONS AND ANSWERS

0

WHAT IS STATIC FUNCTION IN C?

All Answers

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

All functions are global by default in a C program/file. But, static keyword makes a function as a local function which can be accessed only by the program/file where it is declared and defined. Other programs/files can’t access these static functions.

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

total answers (1)

C INTERVIEW QUESTIONS AND ANSWERS

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
IF YOU WANT TO EXECUTE C PROGRAM EVEN AFTER MAIN F... >>
<< HOW MANY ARGUMENTS CAN BE PASSED TO A FUNCTION IN ...