Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

ความคิดเห็นในภาษา C/C++


ความคิดเห็นเป็นส่วนหนึ่งของโค้ดที่คอมไพเลอร์ไม่สนใจ ทำให้โค้ดอ่านและเข้าใจได้ง่าย ความคิดเห็นแบบบรรทัดเดียวและหลายบรรทัดทำงานในลักษณะเดียวกันในภาษา C++

ความคิดเห็นในภาษา C/C++

// Single Line Comment

/*
Multi Line Comments
*/

นี่คือตัวอย่างความคิดเห็นในภาษา C

ตัวอย่าง

#include <stdio.h>
#include <string.h>
int main () {
   /* declarations
   of
   data members */
   char s[10] = "HelloWorld";
   char d[10];
   int n;
   n = strxfrm(d, s, 5);
   printf("Length of string : %d", n); // length of string
   return(0);
}

ผลลัพธ์

Length of string : 10

ในโปรแกรมด้านบนจะแสดงทั้งความคิดเห็นแบบบรรทัดเดียวและหลายบรรทัด โปรแกรมกำลังคัดลอกชุดอักขระไปยังปลายทาง

/* declarations
of
data members */
char s[10] = "HelloWorld";
char d[10];
int n;
n = strxfrm(d, s, 5);
printf("Length of string : %d", n); // length of string