473,382 Members | 1,368 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,382 software developers and data experts.

difference between date & time

hi,
I have 2 date/time values
i.e. the system date/time and (h:m dd:mm:yyyy). I would like know to
find a routine that calculate this difference. Maybe using the struct
time_t and difftime.

how I can do?

Please help me.

Aug 30 '07 #1
5 3575
alcool wrote On 08/30/07 12:33,:
hi,
I have 2 date/time values
i.e. the system date/time and (h:m dd:mm:yyyy). I would like know to
find a routine that calculate this difference. Maybe using the struct
time_t and difftime.
You are probably thinking about struct tm; time_t is
not a struct. Store the values for one time in a struct tm
object[*] and use mktime() to convert them to a time_t. Then
do the same with the other, getting another time_t. Then
use difftime() to find the number of seconds between the two
times.
[*] Remember to make appropriate adjustments when storing
the values! Store the number of years since 1900, yyyy - 1900
rather than yyyy itself. Remember that the months are encoded
with January == 0, not 1. Also, you should probably set the
tm_isdst field to indicate whether your times are expressed in
daylight time or in standard time for your local time zone (or
to -1 to say "I don't know: try to figure it out.")

--
Er*********@sun.com
Aug 30 '07 #2
You are probably thinking about struct tm; time_t is
not a struct. Store the values for one time in a struct tm
object[*] and use mktime() to convert them to a time_t. Then
do the same with the other, getting another time_t. Then
use difftime() to find the number of seconds between the two
times.
I have try:
------------
void cfrDate(char h[], char min[], char y[],char mo[], char d[]){
struct tm *newtime, *oldtime;

time_t result;
time_t long_time;
double elapsed_time;
time( &long_time );

newtime = localtime( &long_time );
oldtime = localtime( &long_time );
newtime->tm_hour = (int)h;
newtime->tm_min = (int)min;
newtime->tm_year = (int)y - 1900;
newtime->tm_mon = (int)mo - 1;
newtime->tm_mday = (int)d;

result = mktime(newtime);

if ( (result = mktime(newtime)) == (time_t)-1){
fprintf(stderr, "Bad mktime\n");
return EXIT_FAILURE;
}else{
elapsed_time = difftime( result, long_time );
printf("time is %d, %d", result, long_time);
printf("time elapsed is %d", elapsed_time);
}
(...)
------
but I obtain only "Bad mktime"

why?

Aug 31 '07 #3
alcool <fa***********@gmail.comwrites:
> You are probably thinking about struct tm; time_t is
not a struct. Store the values for one time in a struct tm
object[*] and use mktime() to convert them to a time_t. Then
do the same with the other, getting another time_t. Then
use difftime() to find the number of seconds between the two
times.
I have try:
------------
void cfrDate(char h[], char min[], char y[],char mo[], char d[]){
A parameter declared as an array is really a pointer, so your
parameters are effectively:

char *h, char *min, char *y, char *mo, char *d

I don't know why you'd want them to be either arrays or pointers.

I suspect you really want all the parameters to be of type int. Using
char because they're within a relatively short range isn't likely to
save you anything -- and the year number isn't likely to fit in a
single byte.
struct tm *newtime, *oldtime;

time_t result;
time_t long_time;
double elapsed_time;
time( &long_time );

newtime = localtime( &long_time );
oldtime = localtime( &long_time );
newtime->tm_hour = (int)h;
This cast, like almost all casts, is suspicious.

You're converting a pointer value to type int, which makes no sense in
this context. If you had declared 'h' as int you could have written

newtime->tm_hour = h;
newtime->tm_min = (int)min;
newtime->tm_year = (int)y - 1900;
newtime->tm_mon = (int)mo - 1;
newtime->tm_mday = (int)d;
See above.
result = mktime(newtime);

if ( (result = mktime(newtime)) == (time_t)-1){
fprintf(stderr, "Bad mktime\n");
return EXIT_FAILURE;
}else{
elapsed_time = difftime( result, long_time );
printf("time is %d, %d", result, long_time);
"%d" is the format for type int; your arguments are of type time_t.
And you're missing a new-line. I suggest:

printf("time is %ld, %ld\n", (long)result, (long)long_time);

There's no guarantee that a time_t value will fit in a long, but it's
likely to work. If it doesn't, use a different type and adjust the
format string appropriately.
printf("time elapsed is %d", elapsed_time);
elapsed_time is of type double. Use "%g" or "%f".
}
(...)
------
but I obtain only "Bad mktime"

why?
See above. There may be other errors in your code. Fix the ones I've
described, and try again.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Aug 31 '07 #4
In <11*********************@r23g2000prd.googlegroups. comalcool <fa***********@gmail.comwrites:

void cfrDate(char h[], char min[], char y[],char mo[], char d[]){
struct tm *newtime, *oldtime;
newtime->tm_hour = (int)h;
You can't convert from a string to an int this way. Instead, use atoi().

newtime->tm_hour = atoi(h);

--
John Gordon A is for Amy, who fell down the stairs
go****@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"

Aug 31 '07 #5
On Fri, 31 Aug 2007 07:48:53 -0000, alcool <fa***********@gmail.com>
wrote:
>
You are probably thinking about struct tm; time_t is
not a struct. Store the values for one time in a struct tm
object[*] and use mktime() to convert them to a time_t. Then
do the same with the other, getting another time_t. Then
use difftime() to find the number of seconds between the two
times.
I have try:
------------
void cfrDate(char h[], char min[], char y[],char mo[], char d[]){
struct tm *newtime, *oldtime;

time_t result;
time_t long_time;
double elapsed_time;
Aside: The name long_time could be misleading, since time_t isn't
necessarily /*signed*/ long, or even unsigned long, although those are
common. It also isn't a good variable name as it says nothing whatever
about the _purpose_ for which the variable is used. In this routine I
would probably call it current_time or time_now or just now. result is
a little better, but still not very specific; I would probably call it
other_time or time_then or then. The choice of names is important to
the human(s) reading your code -- possibly including yourself, some
time in the future -- but make no difference to the compiler, as long
as they are legal and unique (which these are).
>
time( &long_time );

newtime = localtime( &long_time );
oldtime = localtime( &long_time );
Note that localtime() (or gmtime())) returns a pointer to static
memory, not a unique object or value. If after this you used both
oldtime->foo and newtime->bar you would have problems. You don't in
fact do that, so this time you're OK, but skating on thin ice.
>
newtime->tm_hour = (int)h;
newtime->tm_min = (int)min;
newtime->tm_year = (int)y - 1900;
newtime->tm_mon = (int)mo - 1;
newtime->tm_mday = (int)d;
As already noted these are your real problem. Also remember Eric's
advice to set tm_isdst in the struct tm you will pass to mktime().
result = mktime(newtime);

if ( (result = mktime(newtime)) == (time_t)-1){
There's no reason to call mktime() twice with the same argument. Or
more precisely, with pointers to the same* data, whether or not
located in the same place. (* They won't actually be identical if the
first call normalized it, but then they will be equivalent.)

result = mktime(newtime);
if( result == (time_t)-1 ) ...
is one common style, and
if( (result = mktime(newtime)) == (time_t)-1 ) ...
is another common style.
Both are legal. Some people prefer one or the other across the board,
and some choose depending on the particular situation. At the level of
learning you display in your post, you might want to just stick with
one for now, while you focus on more important points.

- formerly david.thompson1 || achar(64) || worldnet.att.net
Sep 16 '07 #6

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

Similar topics

4
by: Gerry | last post by:
As I'm not a PHP-prgrammer at all, I just need Help with this: I have had a guestbook-page in Europe and will now have to move it to a US based-server. This makes the time-function showing time...
4
by: jamesyreid | last post by:
Hi, I'm really sorry to post this as I know it must have been asked countless times before, but I can't find an answer anywhere. Does anyone have a snippet of JavaScript code I could borrow...
3
by: divya | last post by:
Hi, I have a table tblbwday with 2 fields Name and Birthday.I have written this script for displaying evryday names of the people on that day. <% set objConn...
3
by: bbawa1 | last post by:
Hi, I have a table which has a field ItemsReceived of type datetime. I have a grid view which has two columns. In first column i have to show the data from field ItemsReceived and in second...
1
by: aRTx | last post by:
<? /* Directory Listing Script - Version 2 ==================================== Script Author: Artani <artan_p@msn.com>. www.artxcenter.com REQUIREMENTS ============ This script requires...
1
by: adeebraza | last post by:
Hi, Every Body Following is code for Showing Actual Date & Time on the form and also record Date & Time of an event. See the following and use Call Modified when you want to record an event in...
3
by: aRTx | last post by:
I have try a couple of time but does not work for me My files everytime are sortet by NAME. I want to Sort my files by Date-desc. Can anyone help me to do it? The Script <? /* ORIGJINALI
0
by: sharsy | last post by:
Hi, I've setup a query that compares the difference (in years) between two date fields (Joining Date & Date Cancelled) and then totals how many people fit into each category (0 years, 1 year, 2...
15
by: student4lifer | last post by:
Hello, I have 2 time fields dynamically generated in format "m/d/y H:m". Could someone show me a good function to calculate the time interval difference in minutes? I played with strtotime() but...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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...

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.