self
Maths Puzzle
In C the difference between a normal global variable and a static global variable is:
Read Solution (Total 1)
-
- noramal variable - which scope is limited inside a particular block where it is declared .
global variable - which scope is not limited to particular code block , it can be accessed any where in the program .
static global variable - which value fixed in whole program not changed and access any where not limited to any particular code block. - 12 years agoHelpfull: Yes(1) No(0)
self Other Question