C GMT Time

In this section, you will study how to get the gmt time in C.
GMT stands for
Greenwich Mean Time. In the given example, the time() function determines
the current time in seconds and assign it to t. We have used the library
function gmtime() to adjust a time_t representation to a Universal Time
string, and then converts it to a printable string using the asctime()
function.
Here is the code:
GMTTIME.C
#include <stdio.h>
#include <time.h>
#include <conio.h>
void main() {
time_t t;
time(&t);
printf("Current Time is: %s\n", ctime(&t));
printf("GMT Time is: %s\n", asctime(gmtime(&t)));
getch();
}
|
Output will be displayed as:

Download Source Code:

|