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>
|
Output will be displayed as:

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: C GMT Time
Post your Comment