// --------------------------------------
#include <stdio.h>
main() {
printf("File :%s/n", __FILE__ );
printf("Date :%s/n", __DATE__ );
printf("Time :%s/n", __TIME__ );
printf("Line :%d/n", __LINE__ );
printf("ANSI :%d/n", __STDC__ );
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265158.html