PDA

View Full Version : نیاز فوری:ساعت کی میتونه بنویسه?????



Mohammadvb6
شنبه 23 اردیبهشت 1385, 12:27 عصر
سلام نیاز فوری:ساعت کی میتونه بنویسه?????

omid_Ahmadi
شنبه 23 اردیبهشت 1385, 17:21 عصر
see the following link

http://www.barnamenevis.org/forum/showthread.php?t=19441

SwordFish
چهارشنبه 10 خرداد 1385, 07:43 صبح
#include <stdio.h>
#include <dos.h>
#include <conio.h>
#include <time.h>
int main(void)
{
time_t curtime; // Define a Varible of type time_t.
textmode(C80);
clrscr(); // for Clear Screen.
textcolor(10); // Change Text Color into Green .
while (!kbhit())
{ // This Loop will Continue until when press a key of Keyboard.
time(&curtime); // For Geting Current Date & Time .
gotoxy(1,1); // For Change location of the cursor .
cprintf("Currnet Date and Time is : %s\n",ctime(&curtime));
delay(1000); // Delay about 1 second.
}
return 0;
}