c type qualifier default behaivor

Viewed 29

Many C text books mentions the types of qualifiers const, volatile, restrict (C99), _atomic(C11), but what is the behavior of the variable when the type qualifiers are not present, e.g. int a;. What is a's behavior?

0 Answers
Related