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?
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?