Constant in C Hindi | C programming langauge

C Constant: fixd value को constant कहा जाता है, जिनका value कभी नहीं बदलता है एक सा रहता है constant कहलाता constant value को कुछ इस प्रकार  वर्गीकृत किया गया है जो निम्नलिखित है

Numeric

  1. Integer constant
  2. Real constant

Character Constants

  1. Single character constant
  2. String constant
  3. Backslas character constant
C Constant in Hindi | What is constant in C,What is constant in C hindi , constant क्या है , SemantSir

Numeric: Numeric constant में number आते है जिनसे arithmatic operation किया जाता है numeric constant में दो भागो में बता गया है 

1.Integer constant: Integer constant के अंतर्गत सभी प्रकार के number आते है जैसे decemal number ,octal number,hexdecimal number

2.Real constant: Float/Real constant के अंतर्गत दशमलव वाले number आते है 

Character Constants: Character Constants के अंतर्गत कोई भी character, number, symbol आते है पर  इसमें आने वाले number से arithmatic operation नही किया जाता है

1.Single character constant: इसके अंतर्गत एक single character आता है जिसे single quote(' ') के अंदर लिखते है  जैसे 'A', 'B', '10'

2.String constant: इसके अंतर्गत एक character का collection (multiple character) आता है जिसे double quote(" ") के अंदर लिखते है  जैसे  "RAM","Syam"

3.Backslas character constant : इसके अंतर्गत कुछ special constant आते है जिसका इस्तेमाल output को formating करने के लिए किया जाता है 

Constants Meaning
"a" audiable alert (bell)
"" back space
"f" form feed
" \n " new line
" " carriage return
" " horizontal tab
"v" vertical tab
"'" single quote
"?" question mark
"\" backslash
"/" forward slash
'\0' NULL
"\0" null
< less then
> gretor then