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 | 29 | 30 |
31 |
Tags
- France
- erlang
- Python
- QT
- RFID
- Software Engineering
- program
- Linux
- comic agile
- Book review
- essay
- leadership
- Book
- Programming
- Kuala Lumpur
- Artificial Intelligence
- programming_book
- AI
- agile
- ubuntu
- hadoop
- web
- history
- management
- MySQL
- Malaysia
- django
- hbase
- Italy
- Java
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