📄 prntself.c
字号:
/* +++Date last modified: 05-Jul-1997 */
/*
** PRNTSELF.C - A program which prints its own source
**
** public domain demo by Bob Stout
*/
#include <stdio.h>
#include <string.h>
#ifdef __WATCOMC__
#pragma off (unreferenced);
#endif
#ifdef __TURBOC__
#pragma argsused
#endif
main(int argc, char *argv[])
{
FILE *in;
char fname[13], *ptr;
char line[1024]; /* Nice & roomy */
/*
** Get the source name by replacing the executable's COM or EXE with C
*/
strcpy(fname, argv[0]);
ptr = strrchr(fname, '.');
strcpy(++ptr, "C");
/*
** Print its own source
*/
if (NULL != (in = fopen(fname, "r")))
{
while (NULL != fgets(line, 1024, in))
fputs(line, stdprn);
return 0;
}
else return -1;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -