Visual Studio에서 개발하고 있다면 내장된 매크로를 이용하면 된다.
1 2 3 4 5 6 7 8 9 |
#include <iostream> using std::cout; using std::endl; int main(void) { cout << __TIME__ << endl; cout << __TIMESTAMP__ << endl; } |
Visual Studio에서 개발하고 있다면 내장된 매크로를 이용하면 된다.
1 2 3 4 5 6 7 8 9 |
#include <iostream> using std::cout; using std::endl; int main(void) { cout << __TIME__ << endl; cout << __TIMESTAMP__ << endl; } |