[Solved] where in memory are this variables stored on c? [closed]

global variables ——-> data static variables ——-> data constant data types —–> code and/or data. Consider string literals for a situation when a constant itself would be stored in the data segment, and references to it would be embedded in the code local variables(declared and defined in functions) ——–> stack variables declared and defined in … Read more