Comments in C | C Programming In hindi

 Comments in C

आम तौर पर टिप्पणियों का उपयोग कार्यक्रम में लिखे गए तर्क के बारे में विवरण प्रदान करने के लिए किया जाता है। टिप्पणियां आउटपुट स्क्रीन पर प्रदर्शित नहीं होती हैं।

जब हम टिप्पणियों का उपयोग करते हैं, तो उस विशिष्ट भाग को संकलक द्वारा अनदेखा किया जाएगा।

In सी ’भाषा में दो प्रकार की टिप्पणियाँ संभव हैं

  • Single line comments
  • Multiple line comments

Single line comments

सिंगल लाइन टिप्पणियों का उपयोग / / ……………… द्वारा किया जा सकता है।

Multiple line comments

एकाधिक लाइन टिप्पणियों का उपयोग करके प्रदान किया जा सकता है /* ………………………*/


Rules for Writing Comments

1. Program contains any number of comments at any place.

Example

// header files
#include<stdio.h>
#include<conio.h>

void main()
{
// variable declaration
int a,b,c;
a=10;
b=20;
c=a+b;
printf("Sum= %d",c);
getch();
}

2. Nested Comments are not possible, that means comments within comments.

Example

void main()
{
/*
/*      comments   */
*/
}

3. Comments can be splits over more than one line.

Example

void main()
{
/* main   
   function
   body part
*/
}

4. Comments are not case sensitive.

Example

void main()
{

/*  MAIN Function BODY   */

}

5. Single line comments start with "//"

Example

void main()
{

// Single line comment

}


टिप्पणियाँ