c언어 현재일자구해서 비교 ㅠㅠ 질문입니다 ㅠ

qodwlql의 이미지

char szDate[9];
void Date(char *szCur_Date)
{
struct tm *today;
time_t ltime;

time(&ltime);
today = localtime(&ltime);
if(today->tm_year > 99)
{
today->tm_year -= 100;
}
//sDate 를 함수 인자인 szCurr_Date로 수정
sprintf(szCur_Date, "20%02d%02d%02d", today->tm_year,today->tm_mon+1,today->tm_mday);
}
main(int argc, char *argv[])
{
//결과값을 돌려받은 문자배열 선언
char iDate[9];
sprintf(iDate, "%s", 20090110);
//함수호출 추가
GetCurrDate(szDate);
//sDate가 문자배열이므로 %d 를 %s로 수정
if (iDate < szDate)
{
printf("더적다");
}
else{
printf("더크다");
}
}
이상황인데요
이렇게하면 세그멘테이션 오류가 떨어지네요 ㅠㅠ 값을 비교할수는 없나요 ㅠㅠ

keke111의 이미지

여기 에러

sprintf(iDate, "%d", 20090110);

좀 쉬었다가 하세요.

bushi의 이미지

strptime() 을 이용해서 문자열을 struct tm 으로 변환하고,
mktime() 을 이용해서 struct tm 을 time_t 로 변환하면,
difftime() 을 이용해서 어느 쪽이 큰 지 알아낼 수 있습니다.

struct tm tm1;
struct tm tm2;
char *e;
 
memset(&tm1, 0, sizeof(tm1));
memset(&tm2, 0, sizeof(tm2));
 
e = strptime("2009 01 10", "%Y %m %d", &tm1);
if (e && *e) {
   printf("error!\n");
}
e = strptime("2009 01 11", "%Y %m %d", &tm2);
if (e && *e) {
   printf("error!\n");
}
 
time_t t1 = mktime(&tm1);
time_t t2 = mktime(&tm2);
double d = difftime(t1, t2);
 
char s[80], *s1 = s, *s2 = s;
s2 += strftime(s1, sizeof(s), "%Y/%m/%d ", &tm1) + 1;
strftime(s2, sizeof(s) - (s2 - s1), " %Y/%m/%d", &tm2);
*(s2 - 1) = (d == 0 ? '=':(d < 0 ? '<':'>'));
 
printf("%s\n", s);

[bushi@rose ~]$ ./test
2009/01/10 < 2009/01/11
[bushi@rose ~]$ 

OTL
select99의 이미지

참고로 날짜나 시간을 비교할때
스트링이나 숫자로 비교하지마시고

time_t 로만들어서 비교하는게 (차후 여러모로)좋습니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.