+ 1
Explain static variable in C programming
2 Answers
+ 6
Rakesh Rakesh static variables are generally initialized once which can be defined either inside the function or outside
The compiler persists with the variable till the program ends
Hope it helps you!