0
Can somebody make a code that prints the system time and explain how does it works ???
2 Answers
+ 5
https://code.sololearn.com/c1M46KHGdor8/?ref=app
It's not mine. But it is very nice and easy. Follow that guy, he's cool :P
+ 2
it's simple
#include <iostream>
using namespace std;
int main() {
cout<< __TIME__;
return 0;
}