Skip to content

Instantly share code, notes, and snippets.

@qiaohaijun
Created June 15, 2017 11:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qiaohaijun/a7416ce3845ccdd28ae312254331a569 to your computer and use it in GitHub Desktop.
Save qiaohaijun/a7416ce3845ccdd28ae312254331a569 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main()
{
printf("%s\n",__FILE__);
printf("%d\n",__LINE__);
printf("%s\n",__TIME__);
printf("%s\n",__DATE__);
}
@qiaohaijun
Copy link
Author

我推测这些变量最早的时候是为了解决程序debug的问题。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment