Programming with C
- Posted by Admin
- on May 20, 2021
- in Uncategorized
- No Comments.
Post Views: 1,922
In this article you will learn about the variables and how to use rules in c programming language.
Variables
In c programming laguage variable is a buffer (storage) location or container to hold the data or value. For specific data we named the variable uniquely. This unique name is called identifier.
char ch = 'a'; // some code ch = 'l';
char ch = 'a';
// some code
ch = 'l';