📜  C程序显示自己的源代码作为输出

📅  最后修改于: 2020-10-04 11:57:34             🧑  作者: Mango

在此示例中,您将学习使用__FILE__宏显示程序的源代码。

尽管这个问题看起来很复杂,但是该程序的概念很简单。显示与编写源代码相同的文件中的内容。

在C程序中显示其自身源代码的过程

在C编程中,有一个名为__FILE__的预定义宏,该宏给出当前输入文件的名称。

#include 
int main() {

   // location the current input file.
   printf("%s",__FILE__);
}

C程序显示自己的源代码

#include 
int main() {
    FILE *fp;
    int c;
   
    // open the current input file
    fp = fopen(__FILE__,"r");

    do {
         c = getc(fp);   // read character 
         putchar(c);     // display character
    }
    while(c != EOF);  // loop until the end of file is reached
    
    fclose(fp);
    return 0;
}