How do I get a uint unix timestamp in C++? I\'ve googled a bit and it seems that most methods are looking for more convoluted ways to represent time. Can\'t I j
uint
#include #include using namespace std; int main () { unsigned long int sec= time(NULL); cout<