Embed presentation
Download to read offline





Variables in C are memory locations that store data for later use, unlike constants whose values do not change. When declaring a variable, the operating system reserves a piece of memory with that name. Variable names can consist of letters, digits, and underscores but must start with a letter, cannot contain spaces or special characters, and cannot be keywords. Variable types include char, int, float, double, and void.




