Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Python
- management
- Malaysia
- Book
- hbase
- Software Engineering
- Spain
- program
- comic agile
- web
- ubuntu
- Italy
- Java
- Kuala Lumpur
- MySQL
- leadership
- Book review
- hadoop
- psychology
- France
- RFID
- agile
- essay
- history
- erlang
- django
- programming_book
- QT
- Programming
- Linux
Archives
- Today
- Total
reserved C macro 본문
gcc 3.4.5 (mingw), Windows XP
#include <stdio.h>
/*
reserved C marco
__FILE__, __LINE__, __DATE__, __TIME__
*/
int main()
{
printf("file name :\t%s\n", __FILE__);
printf("line number :\t%d\n", __LINE__);
printf("date :\t%s\n", __DATE__);
printf("time :\t%s\n", __TIME__);
return 0;
}
#include <stdio.h>
/*
reserved C marco
__FILE__, __LINE__, __DATE__, __TIME__
*/
int main()
{
printf("file name :\t%s\n", __FILE__);
printf("line number :\t%d\n", __LINE__);
printf("date :\t%s\n", __DATE__);
printf("time :\t%s\n", __TIME__);
return 0;
}
Comments