0
Can someone please explain the variables in c to me am so confused
C language lesson 3.1
2 Respuestas
+ 5
Variables are named memory locations. When you create one they take some space in memory according to its data type. Like char takes one byte in memory. When you save something in memory, you also might need to access it later. You can access it by its name or by its address in the memory.
In short you just give name to a memory location and store data there.
+ 1
Thanks