Tutorials
C Language
C Programming - Constants and Variables
C Programming - Constants and Variables - Page 2
C Programming - Constants and Variables - Page 3
A Single Character constant represent a single character which is enclosed in a pair of quotation symbols.
Example for character constants are
'5'
'x'
';'
' '
All character constants have an equivalent integer value which are called ASCII Values.
A string constant is a set of characters enclosed in double quotation marks. The characters in a string constant sequence may be a alphabet, number, special character and blank space. Example of string constants are
"VISHAL"
"1234"
"God Bless"
"!.....?"
Backslash character constants are special characters used in output functions. Although they contain two characters they represent only one character. Given below is the table of escape sequence and their meanings.
|
Constant |
Meaning |
|
'\a' |
.Audible Alert (Bell) |
|
'\b' |
.Backspace |
|
'\f' |
.Formfeed |
|
'\n' |
.New Line |
|
'\r' |
.Carriage Return |
|
'\t' |
.Horizontal tab |
|
'\v' |
.Vertical Tab |
|
'\'' |
.Single Quote |
|
'\"' |
.Double Quote |
|
'\?' |
.Question Mark |
|
'\\' |
.Back Slash |
|
'\0' |
.Null |
A variable is a value that can change any time. It is a memory location used to store a data value. A variable name should be carefully chosen by the programmer so that its use is reflected in a useful way in the entire program. Variable names are case sensitive. Example of variable names are
Sun
number
Salary
Emp_name
average1
Any variable declared in a program should confirm to the following
1. They must always begin with a letter, although some systems permit underscore as the first character.
2. The length of a variable must not be more than 8 characters.
3. White space is not allowed and
4. A variable should not be a Keyword
5. It should not contain any special characters.
Examples of Invalid Variable names are
123
(area)
6th
%abc
First Page: C Programming - Constants and Variables
| ;)hey the content is superb..its too good for the beginners.. |
|
I really think all this is so incredible coz it is so simple to understand. Now i can bunk classes but still have hope. Thanks |
|
Hi, i am beginner and want more explanation,please provide |
| the content is fabulus |
|
i would like to know how to produce a new product by using c progrmming and vectors and matrices |
| hai, i am satheesh ,i am doing mca,these simply enough for beginners ,i want to know the source code for printf and scanf fuctions. |
| Hi, This is Raman Bhatia From Punjab , its contents too simple that i want to appriciate to the Writer, its too fabulous |
| I really think all this is so incredible coz it is so simple to understand. Now i can bunk classes but still have hope. |
| Its very necessery for the beginner. |
| i need help to find error |
|
I really have interest for learning the C programming. When the function portion comes, I really confuse. How I can remove it. thank u |
|
what kind of error? logical or syntax errors? logical errors are more hard to debug... Experts say, programmers are intellectual. I agree, it's hard to study C programming, it takes a lot time and effort. Maybe because the teaching in our school is hard. |