17 Oct Variables in C Programming
Variable names in C Language are the names given to locations in memory. These locations can be an integer, characters, or real constants. In addition, a variable type can only hold the same constant type. In this lesson, we will learn how to work with Variables in C Programming.
Rules for Variable naming
The first character in a variable name must be an underscore or alphabet. Here are the rules, with some examples,
- A variable name is a combination of alphabets 1 to 31, digits, or underscores.
- No special symbol in a variable name is valid, except the underscore.
- No comma is allowed in a variable name.
- In addition, no blank space is valid.
Always try to create meaningful names. For example, the variable names for calculating the results of students can be given variable name results.
Variable Declaration
Declaration of a variable in C language is quite easy. The following is the syntax showing how to declare variables in C programming,
1 2 3 |
datatype varlist; |
The valid variable declaration examples are shown below. Here, int, char, and float are datatypes,
1 2 3 4 5 6 7 8 9 |
int result; int marks_one, marks_two; char s = ‘P’; char name; float points; |
The preceding examples show how a variable is declared, wherein a datatype precedes the variable name.
The following examples demonstrate the usage of variables in C Programming,
If you liked the tutorial, spread the word and share the link and our website Studyopedia with others:
For Videos, Join Our YouTube Channel: Join Now
Read More:
No Comments