C Standard Libraries C++

asctime()

Declaration

char* asctime(const struct tm* kqpTimePtr);

Description

This function takes in a time specification given as an instance of the "tm" data type and returns a char pointer to a character array that contains an ASCII text description of the time.

Example

#include <iostream>
#include <ctime>

int main() {
    using namespace std;

    time_t qTimeInTicks;
    time(&qTimeInTicks);

    tm* qpTimeStructPtr;
    qpTimeStructPtr = localtime(&qTimeInTicks);

    char* cpTimeText = 0;
    cpTimeText = asctime(qpTimeStructPtr);

    cout << "The time is " << cpTimeText << endl;

    return 0;
}

Output

asctime() Output
 

© 2007–2024 XoaX.net LLC. All rights reserved.