
- Forum
- Programming Talk
- C and C++
- logic for day of date entered??
logic for day of date entered??
This is a discussion on logic for day of date entered?? within the C and C++ forums, part of the Programming Talk category; May i know the logic how to find day of day entered??...
-
03-23-2007, 06:02 AM #1
- Join Date
- Jan 2007
- Answers
- 1
logic for day of date entered??
May i know the logic how to find day of day entered??
-
take a look at SYSTEMTIME stucture in stdio.h.
SYSTEMTIME stime;
GetSystemTime(&stime);
printf("Day:%d\n" , stime.wDay );

Reply With Quote





