473,406 Members | 2,371 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

what's wrong with my program ?

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;
}
Nov 14 '05 #1
6 1905
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

Nov 14 '05 #2

"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;
}

Nov 14 '05 #3
"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
Nov 14 '05 #4


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/

Nov 14 '05 #5
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;
Nov 14 '05 #6
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 ?
Nov 14 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

137
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...
125
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...
5
by: titan0111 | last post by:
#include<iostream> #include<iomanip> #include<cstring> #include<fstream> using namespace std; class snowfall { private: int ft;
56
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...
11
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...
46
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...
669
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...
20
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;
12
by: broli | last post by:
#include<stdio.h> #include<stdlib.h> struct point { double x, y, z;
4
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...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.