Main Menu

HOME

.Net
ASP
Assembly
C
C++
Delphi
HTML
Java
JavaScript
MySQL
PC interface
Powershell
Perl
PHP
VBScript
Visual Basic
XML

Make money selling software. Check this out here

Hosted clickbank mall. Check this out here




   Misc

   Amazon

   Links

    


asctime example
 

 

 

This simply shows usage of the asctime function.

			/*using the asctime function*/			
#include 
#include 

int main()
{
	struct tm *ptr;
	time_t tm;
	tm = time(NULL);
	ptr = localtime(&tm);
	printf(asctime(ptr));

	return 0;
}
	


 

 

 

Download

asctime.txt


 




   Sponsors
 

   Software
500 Java Tips E-book
PHP editor
PERL editor
Beginning Java
Beginning Visual Basic
Learn VB.net
Learn VB 6
VB and databases
ASP image library
C++ builder programming
C++ fundamentals

   Source Code
File example(C++)
show all subfolders(VB.net)
round form example(VB)
Create a text file(Powershell)
area of rectangle function(Javascript)
a movable target(Darkbasic)
Disk diagnostics(C)
Do While loop(Javascript)

    




Copyright © 2003 by programmershelp.co.uk