What is static function in c?
Answer / Avinash Pandey
A static function in C is a function that has internal linkage, meaning it can only be called from the same file where it is defined. Unlike regular functions, it retains its value between function calls.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the use of #define preprocessor in c?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
What is meant by recursion?
What is methods in c?
Why isnt any of this standardized in c?
HOW TO HANDLE EXCEPTIONS IN C
What are multidimensional arrays?
What is difference between class and structure?
Explain can static variables be declared in a header file?
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.
Where local variables are stored in c?