0% found this document useful (0 votes)
21 views1 page

C Variables and Constants Explained

variable constants

Uploaded by

swathi.brv
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
21 views1 page

C Variables and Constants Explained

variable constants

Uploaded by

swathi.brv
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

**Variables and Constants in C**

**Variables:** A variable is a named storage location in memory used to store data. - Must be
declared before use - Have a data type and a name

**Example:** ```c int number = 10; ```

**Constants:** Constants are fixed values that do not change during the execution of a program. -
Declared using `const` keyword or `#define`

**Example:** ```c const float PI = 3.14; #define MAX 100 ```

You might also like