Zeit

Code:
#include <time.h>
#include <stdlib.h>
#include <stdio.h>

int main(void)
{
	time_t tm_now;
	struct tm *ptm_now;

	time(&tm_now);
	ptm_now = localtime(&tm_now);
	printf("%s", asctime(ptm_now));

	return 0;
}

wenn du mit "Uhrzeit bestimmen" allerdings die Uhr einstellen willst, musst du die ptm_now struct mit Werten füllen zb. ptm_now->tm_day = 17, etc......
 
Zuletzt bearbeitet:
Zurück