ডিভাইসের বর্তমান দিন-মাস-বছর প্রিন্ট করবো কীভাবে ? ধন্যবাদ ভাই। শুভকামনা""" বি:দ্র: 'সি' ভাষা
2613 views

1 Answers

#include 
#include 
#include 

int main() {

    time_t current_time;
    char* c_time_string;

    current_time = time(NULL);

    /* Convert to local time format. */
    c_time_string = ctime(&current_time);

    printf("Current time is %s", c_time_string);

    return 0;
}
//source stack overflow


2613 views

Related Questions