From 04ee6e37e84bfeb4396fc9ad63246fc2eb1cdcc2 Mon Sep 17 00:00:00 2001 From: bassoprofondo Date: Tue, 24 Jan 2017 23:39:23 +0300 Subject: [PATCH] =?UTF-8?q?Konsol=20ekran=C4=B1na=20g=C3=BCn=C3=BCn=20tari?= =?UTF-8?q?hini=20basan=20c=20kodu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Oğuz Kaan BULUT tarafından yazıldı. --- ekranaTarihBasma.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ekranaTarihBasma.c diff --git a/ekranaTarihBasma.c b/ekranaTarihBasma.c new file mode 100644 index 00000000..8ce091e6 --- /dev/null +++ b/ekranaTarihBasma.c @@ -0,0 +1,16 @@ +/Created by Oğuz Kaan BULUT. +//All rights reserved. + +#include +#include +#include + +void main(){ + + time_t t; + + t = time(NULL); + printf("Gunun tarih ve saati: %s",ctime(&t)); + + getch(); +}