If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
Comments program में line of code होता है जो कि execute नहीं होता है, जिससे कि जब दुबारा हम उस program पर काम करे तो हर step हमें समझ आ सके कि हमने इसमें किया क्या था।
C++ में Comments दो तरह के होते है -
C++ में single line comment को double slashes // की help से लिखा जाता है , जैसा कि आप नीचे example में देख सकते हैं ।
#include <iostream>
using namespace std;
int main() {
// this is single line comment.
string name = "Rahul Kumar";
cout << name;
return 0;
}
Rahul Kumar
multi line comment लिखने के लिए slash asterisk /* से start करते हैं और asterisk slash */ से end करते है।
#include <iostream>
using namespace std;
int main() {
/*
this is
multi line
comment.
*/
string name = "Rahul Kumar Rajput";
cout << name;
return 0;
}
Rahul Kumar Rajput
किसी भी project पर काम करने के बाद हमें जरूरत के हिसाब से समय के साथ उसमे changes करने पढ़ ही जाते हैं तो जब हम update करें तो हमें proper पता चले कि हमने किया क्या था।
या जब कोई दूसरा programmer हमारे द्वारा develop किये गए project को देखे या update करे तो उसे भी पता चले।
Comments लिखना आपकी Coding Standardization को भी बताता है।
Comments लिखने से Coding Readability भी बढ़ती है।