Variable in C language

 Print   1 min read  
21 Aug 2022
Intermediate
8.81K Views

Variables or symbolic variables are the names of storage location of computer memory whose values may vary during execution of a program.

These memory location may contain integer, real or character constant.

There are always two values associated with a symbolic variable.

(i) It’s data value(read value) stored at some location in memory and is referred as variable’s rvalue.

(ii) It’s location value(address value) the address at which it’s data value is stored and is referred as variable’s lvalue.

Key points about variable

  1. In ANSI standard, C recognizes length of a variable up to 31 characters. However, length should not be more than 8 characters. Since, many compilers treat only first 8 character as significant.
    For example :

     average_score and average_speed 

    are treated as same variable.

    It can be written as :

     avg_score and avg_speed or score_average and speed_average

  2. Upper and lower case are significant (means case sensitive) For example :

     deepak, Deepak and DEEPAK

    are different.

What do you think?

In this article I try to explain the concept of variable it's usage and it's types in C language. I hope you will be beneficial by this article. Comment and critics are welcome.

Learn to Crack Your Technical Interview

Accept cookies & close this