summaryrefslogtreecommitdiff
path: root/notes/time_testing.c
blob: 014ecca12cea8d9465492475a2931f32fb480414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>
#include <time.h>


int main(void)
{
	time_t cur_time_sec;
	struct tm* time_values;
	char buffer[100];

	time(&cur_time_sec);

	time_values = localtime( &cur_time_sec);

	strftime(buffer, 100, "%A, %H:%M", time_values);		


	printf("Time is: %s\n", buffer);
	return 0;
}