hi, below is my program for doing exercise with library time functions,
something is not right with it, and for the time being i couldn't figure
out what's wrong and where, thanx for your help.
#include <time.h>
#include <stdio.h>
double TimeDifference(struct tm *t1,struct tm *t2)
{
return difftime(mktime(t1),mktime(t2));
}
char *ConstructTime(struct tm *time,int month,int day,int year)
{
time->tm_mon=month-1;
time->tm_mday=day;
time->tm_year=year-1900;
mktime(time);
return asctime(time);
}
int main(int argc,char **argv)
{
struct tm now,t1,t2;
char *tmstr;
double diff;
int month,day,year;
scanf("%d%d%d",&month,&day,&year);
tmstr=ConstructTime(&now,month,day,year);
printf("%s",tmstr);
ConstructTime(&t1,6,7,2004);
ConstructTime(&t2,6,9,2004);
diff=TimeDifference(&t1,&t2);
printf("%f\n",diff);
return 0;
} 6 1893
sugaray wrote: hi, below is my program for doing exercise with library time functions, something is not right with it, and for the time being i couldn't figure out what's wrong and where, thanx for your help.
#include <time.h> #include <stdio.h>
double TimeDifference(struct tm *t1,struct tm *t2) { return difftime(mktime(t1),mktime(t2)); }
char *ConstructTime(struct tm *time,int month,int day,int year) { time->tm_mon=month-1; time->tm_mday=day; time->tm_year=year-1900;
At this point, all of the members of time except the 3 you just
set contain garbage. You need to set them to some rational
values before going on.
mktime(time); return asctime(time); }
--
Thomas M. Sommers -- tm*@nj.net -- AB2SB
"sugaray" <ru****@sohu.com> wrote in message news:ad**************************@posting.google.c om... hi, below is my program for doing exercise with library time functions, something is not right with it, and for the time being i couldn't figure out what's wrong and where, thanx for your help.
#include <time.h> #include <stdio.h>
double TimeDifference(struct tm *t1,struct tm *t2) { return difftime(mktime(t1),mktime(t2)); }
char *ConstructTime(struct tm *time,int month,int day,int year) { time->tm_mon=month-1; time->tm_mday=day; time->tm_year=year-1900; mktime(time); return asctime(time); }
int main(int argc,char **argv) { struct tm now,t1,t2; char *tmstr; double diff; int month,day,year;
/* adding these removed the misbehaviour */
memset ( &now, 0, sizeof now );
memset ( &t1, 0, sizeof t1 );
memset ( &t2, 0, sizeof t2 );
scanf("%d%d%d",&month,&day,&year); tmstr=ConstructTime(&now,month,day,year); printf("%s",tmstr); ConstructTime(&t1,6,7,2004); ConstructTime(&t2,6,9,2004); diff=TimeDifference(&t1,&t2); printf("%f\n",diff);
return 0; }
"Vijay Kumar R Zanvar" <vi*****@globaledgesoft.com> wrote: "sugaray" <ru****@sohu.com> wrote in message news:ad**************************@posting.google.c om... char *ConstructTime(struct tm *time,int month,int day,int year) { time->tm_mon=month-1; time->tm_mday=day; time->tm_year=year-1900; mktime(time); return asctime(time); }
int main(int argc,char **argv) { struct tm now,t1,t2; char *tmstr; double diff; int month,day,year;
/* adding these removed the misbehaviour */ memset ( &now, 0, sizeof now ); memset ( &t1, 0, sizeof t1 ); memset ( &t2, 0, sizeof t2 );
Not a good solution. First of all, the problem really is in
ConstructTime(). With a name like that, one can expect it to construct a
complete time struct, so it should do so. Second, if you use this
solution, you need to use it for every single time you create, not just
once in the function itself; forget one, and the problem comes back.
Third, this sets the structs to all-bits-zero, not to sensible initial
members; in particular, it does not set tm_isdst to something negative,
which is what I would want it to be.
Oh, and another small bug: it is never a good idea to use the same name
for one of your structs as for a closely related Library function...
A better solution is this:
char *ConstructTime(struct tm *the_time, int month,int day,int year)
{
the_time->tm_mon=month-1;
the_time->tm_mday=day;
the_time->tm_year=year-1900;
the_time->tm_sec=the_time->tm_min=the_time->tm_hour=0;
the_time->tm_wday=the_time->tm_yday=0;
the_time->tm_isdst=-1;
mktime(the_time);
return asctime(the_time);
}
Note also that asctime() returns a pointer to a static array, so if you
want to use two of those strings, copy the first _string_, not the first
pointer, before you get the second one. The second call will over-write
the string written by the first.
Richard
sugaray wrote: hi, below is my program for doing exercise with library time functions, something is not right with it, and for the time being i couldn't figure out what's wrong and where, thanx for your help.
#include <time.h> #include <stdio.h>
double TimeDifference(struct tm *t1,struct tm *t2) { return difftime(mktime(t1),mktime(t2)); }
Function mktime will return (time_t)-1 should it
fail to convert a calendar time. Therefore the
function arguments must be of the form that will
ensure a conversion. Or, you must modify the function. char *ConstructTime(struct tm *time,int month,int day,int year) { time->tm_mon=month-1; time->tm_mday=day; time->tm_year=year-1900; mktime(time); return asctime(time); }
I see two problems in the use of function ConstructTime.
First you only set three members of the struct. All the
other members are indeterminant.
Second, if function mktime is unable to determine a
calendar time, components are not set to represent the
specified calendar time, nor their values forced
to the normal ranges. Using this illegitmate struct
as argument to function asctime may be unpleasant.
A possible fix:
#include <time.h>
#include <stdio.h>
double TimeDifference(struct tm *t1,struct tm *t2)
{
return difftime(mktime(t1),mktime(t2));
}
char *ConstructTime(struct tm *time,int month,int day,int year)
{
struct tm tmp = {0};
*time = tmp;
time->tm_mon=month-1;
time->tm_mday=day;
time->tm_year=year-1900;
time->tm_isdst = -1;
return mktime(time)==(time_t)-1?NULL:asctime(time);
}
int main(int argc,char **argv)
{
struct tm now,t1,t2;
char *tmstr1, *tmstr2;
double diff;
int month,day,year;
printf("Enter the date (MM DD YYYY?): ");
fflush(stdout);
scanf("%d%d%d",&month,&day,&year);
tmstr1=ConstructTime(&now,month,day,year);
if(tmstr1) printf("%s\n",tmstr1);
tmstr1 = ConstructTime(&t1,6,7,2004);
if(tmstr1) printf("Time 1: %s",tmstr1);
tmstr2 = ConstructTime(&t2,6,8,2004);
if(tmstr2) printf("Time 2: %s", tmstr2 );
if(tmstr1 && tmstr2)
{
diff=TimeDifference(&t2,&t1);
printf("Difference is %.f secconds\n",diff);
}
return 0;
}
--
Al Bowers
Tampa, Fl USA
mailto: xa******@myrapidsys.com (remove the x to send email) http://www.geocities.com/abowers822/
sugaray wrote: hi, below is my program for doing exercise with library time functions, something is not right with it, and for the time being i couldn't figure out what's wrong and where, thanx for your help.
#include <time.h> #include <stdio.h>
double TimeDifference(struct tm *t1,struct tm *t2) { return difftime(mktime(t1),mktime(t2)); }
char *ConstructTime(struct tm *time,int month,int day,int year) { time->tm_mon=month-1; time->tm_mday=day; time->tm_year=year-1900; mktime(time); return asctime(time); }
You need to initialize the elements of *time (which should be spelt some
way other that "time"). Here's one approach a modern C compiler would like:
char *ConstructTime(struct tm *t, int month, int day, int year)
{
*t = (struct tm) {
.tm_mon = month - 1,.tm_mday = day,.tm_year =
year - 1900,.tm_isdst = -1};
mktime(t);
return asctime(t);
}
An approach that doesn't need the anonymous struct is to declare a local
struct tm t_tmp, with the proper base values, and copy it: *t = t_tmp;
Martin Ambuhl <ma*****@earthlink.net> wrote in message news:<2i************@uni-berlin.de>... char *ConstructTime(struct tm *t, int month, int day, int year) { *t = (struct tm) { .tm_mon = month - 1,.tm_mday = day,.tm_year => year - 1900,.tm_isdst = -1}; mktime(t); return asctime(t); }
An approach that doesn't need the anonymous struct is to declare a local struct tm t_tmp, with the proper base values, and copy it: *t = t_tmp;
so, why use a temp variable rather set the values directly to *t ? This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Philippe C. Martin |
last post by:
I apologize in advance for launching this post but I might get enlightment
somehow (PS: I am _very_ agnostic ;-).
- 1) I do not consider my intelligence/education above average
- 2) I am very...
|
by: Sarah Tanembaum |
last post by:
Beside its an opensource and supported by community, what's the fundamental
differences between PostgreSQL and those high-price commercial database (and
some are bloated such as Oracle) from...
|
by: titan0111 |
last post by:
#include<iostream>
#include<iomanip>
#include<cstring>
#include<fstream>
using namespace std;
class snowfall
{
private:
int ft;
|
by: Cherrish Vaidiyan |
last post by:
Frinds,
Hope everyone is doing fine.i feel pointers to be the most toughest
part in C. i have just completed learning pointers & arrays related
portions. I need to attend technical interview on...
|
by: Alfonso Morra |
last post by:
Hi,
I am at the end of my tether now - after spending several days trying to
figure how to do this. I have finally written a simple "proof of
concept" program to test serializing a structure...
|
by: Keith K |
last post by:
Having developed with VB since 1992, I am now VERY
interested in C#. I've written several applications with
C# and I do enjoy the language.
What C# Needs:
There are a few things that I do...
|
by: Xah Lee |
last post by:
in March, i posted a essay “What is Expressiveness in a Computer
Language”, archived at:
http://xahlee.org/perl-python/what_is_expresiveness.html
I was informed then that there is a academic...
|
by: Daniel.C |
last post by:
Hello.
I just copied this code from my book with no modification :
#include <stdio.h>
/* count characters in input; 1st version */
main()
{
long nc;
nc = 0;
|
by: broli |
last post by:
#include<stdio.h>
#include<stdlib.h>
struct point
{
double x, y, z;
|
by: hirsh.dan |
last post by:
i have a functions that writes information to a file.
inside that function i have a line in which i call another function.
if this line is executed, nothing is written to the file, but if i
remark...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Hello everyone.
I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report).
I know it can be done by selecting :...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM)
Please note that the UK and Europe revert to winter time on...
|
by: nia12 |
last post by:
Hi there,
I am very new to Access so apologies if any of this is obvious/not clear.
I am creating a data collection tool for health care employees to complete. It consists of a number of...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
| |