C Programming (Chapter - 2)

in #education7 years ago (edited)

C Keywords

image

C Operators

image

Qualifier

Qualifier is an extra name given to either variables or functions , showing an extra quality or extra meaning for that variable or function.

  • Size qualifiers- It tells the size of basic data type. E.g. short, long short int

  • Sign qualifiers- It tells the sign of the variable +ive or -ive E.g. signed , unsigned

  • Constant qualifiers/modifier - It can be declared with keyword const. An object declared by const cannot be modified.
    const int i=10;
    float const f=0.0f;
    unsigned const long double ld=3.14L;

Example
void main()
{
const int a=5;
a++;
printf(“%d”,a);
}

output : compiler error, cannot modify const variable.

  • Volatile qualifiers - A variable is declared volatile when it’s value is changed external source from outside the program. “volatile” keyword is used.

(There is another type qualifier near, far, huge, which qualify only pointer type data type ,interrupt is also qualifier of data)

@naymyoaung
follow and vote for more chapters

Coin Marketplace

STEEM 0.20
TRX 0.12
JST 0.030
BTC 61470.93
ETH 3436.77
USDT 1.00
SBD 2.52