#include <iostream>
#include <ctime>
usingnamespace std;
int main ()
{
int a;
time_t now = time(0);
cout << ctime(&now);
cin.get();
return EXIT_SUCCESS;
}
if i compile this it shows the clock for example if it is 4:15:36 then it will show the time
but stops there...there is no ticking...so how can you bring the "ticking"