Comments can be used to explain code, and to make it more
readable. It can also be used to prevent execution when testing alternative
code.
Comments can be singled-lined or multi-lined.
Comment का उपयोग code को समझाने और इसे अधिक readable बनाने के लिए किया जा सकता
है। Alternative code का test करते समय execution को रोकने के लिए भी इसका उपयोग किया जा सकता है।
Comment single line या multi line वाली हो सकती हैं।
Single-line
Comments
Single-line comments start with two forward slashes (//
).
Any text between //
and the end of the
line is ignored by the compiler (will not be executed).
This example uses a single-line comment before a line of code:
सिंगल-लाइन comment दो फॉरवर्ड स्लैश (//) से
शुरू होती हैं।
// और
पंक्ति के अंत के बीच के किसी भी text को कंपाइलर द्वारा ignore कर दिया जाता है (execute नहीं किया जाएगा)।
यह
उदाहरण code की एक पंक्ति से पहले single line comment का उपयोग करता है:
Example
//
This is a comment
printf("Hello World!");
This example uses a single-line comment at the end of a line of
code:
यह
उदाहरण code की एक पंक्ति के अंत में single line comment का उपयोग करता है:
Example
printf("Hello World!"); //
This is a comment
C
Multi-line Comments
Multi-line comments start with /*
and
ends with */
.
Any text between /*
and */
will
be ignored by the compiler:
Multi line comment /* से शुरू होती हैं और */
पर समाप्त होती हैं।
/* और */
के बीच के किसी भी text को compiler द्वारा ignore कर दिया जाएगा:
Example
/*
The code below will print the words Hello World!
to the screen, and it is amazing */
printf("Hello
World!");
Single or
multi-line comments?
It is up to you which you want to use. Normally, we use //
for
short comments, and /* */
for longer.
Good to know: Before version C99 (released
in 1999), you could only use multi-line comments in C.
यह आप पर निर्भर है कि आप क्या उपयोग करना चाहते हैं। आम तौर पर, हम छोटी comment के लिए // और लंबी comment के लिए /* */ का उपयोग करते
हैं।
जानना
अच्छा है: version C99
(1999 में
जारी) से पहले, आप
केवल C में multi-line comment का उपयोग कर सकते थे।
No comments:
Post a Comment