C程式的註解只能是一行嗎?
C程式的註解可以不是一行。在C程式中有多行註釋,其用法是以/*開始、以*/結束的區塊註釋(block comment);
另一種是以//開始、以換行符結束的單行註解(line comment)。
可以使用/*和*/分隔符號來標註一行內的註釋,也可以標註多行的註解。
例如,在下列的函數原型中,省略號的意思是 open() 函數有第三個參數,它是可選參數。
註解解釋了這個可選參數的用法:
int open( const char *name, int mode, … /* int permissions */ );
C語言新增註解
#include<stdio.h> #include<string.h> #include<stdlib.h> intmain() { intm,k=1,n; charline1[256],line[256];//将文件中的数据读入到字符数组中 FILE*fpin=fopen("sourcefile.c","r"); if(fpin==NULL) { printf("sourcecodereaderror!\n"); exit(1); } FILE*fpout=fopen("targetfile.c","w+"); if(fpout==NULL) { printf("sourcecodewriteerror!\n"); exit(1); } printf("请输入m和n:"); scanf("%d%d",&m,&n); intn1=0; fgets(line1,255,fpin); do { n1++; if(n1>=m&&n1<m+k) fputs("//",fpout); fputs(line1,fpout); fgets(line1,255,fpin); } while(!feof(fpin)); fseek(fpout,0,SEEK_SET); fgets(line,255,fpout); do { printf("%d\t%s",k,line); k++; fgets(line,255,fpout); } while(!feof(fpout)); fclose(fpout); fclose(fpin); return0;
推薦教學:《C語言》
以上是C程式的註解只能是一行嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!