Skip to content

Commit

Permalink
Konsol ekranına günün tarihini basan c kodu
Browse files Browse the repository at this point in the history
Oğuz Kaan BULUT tarafından yazıldı.
  • Loading branch information
bassoprofondo authored Jan 24, 2017
1 parent 857b7d8 commit 04ee6e3
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.

This comment has been minimized.

Copy link
@selimsyl

selimsyl Jan 3, 2019

nice

#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();
}

1 comment on commit 04ee6e3

@kurbanberat
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Öncelikle herkese iyi çalışmalar. Kendi bilgisayarımda bu konu ile alakalı kod yazarken voidi kullanınca ('main' must return 'int') hatası verdi. İnt'e çevirdiğimde sorun düzeldi. Bunun sebebi nedir? Bu arada windows kullanıcısıyım ancak pek alakası yok diye düşünüyorum

Please sign in to comment.