Skip to content

Commit

Permalink
Merge pull request #212 from bassoprofondo/patch-3
Browse files Browse the repository at this point in the history
Konsol ekranına günün tarihini basan c kodu
  • Loading branch information
BilgisayarKavramlari authored Feb 16, 2017
2 parents 313d96f + 04ee6e3 commit 367da1e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ekranaTarihBasma.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/Created by Oğuz Kaan BULUT.
//All rights reserved.

#include <stdio.h>
#include <time.h>
#include <conio.h>

void main(){

time_t t;

t = time(NULL);
printf("Gunun tarih ve saati: %s",ctime(&t));

getch();
}

0 comments on commit 367da1e

Please sign in to comment.