原文: https://www.programiz.com/c-programming/examples/source-code-output

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

要理解此示例,您应该了解以下 C 编程主题:


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

C 程序:显示自己的源代码作为输出 - 图1

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

  1. #include <stdio.h>
  2. int main() {
  3. // location the current input file.
  4. printf("%s",__FILE__);
  5. }

显示自己的源代码的程序

  1. #include <stdio.h>
  2. int main() {
  3. FILE *fp;
  4. int c;
  5. // open the current input file
  6. fp = fopen(__FILE__,"r");
  7. do {
  8. c = getc(fp); // read character
  9. putchar(c); // display character
  10. }
  11. while(c != EOF); // loop until the end of file is reached
  12. fclose(fp);
  13. return 0;
  14. }