Comment on When static makes your C code 10 times fasterparentComments−Snoonan9995yConst is to state that this module is not allowed to modify. Think on what'const volatile int foo' means.Mostly seen in embedded space.
Comments
Const is to state that this module is not allowed to modify. Think on what'const volatile int foo' means.
Mostly seen in embedded space.