c 언어..현재일자구하는거..질문입니다 ㅠ

qodwlql의 이미지

void Date(char *szCurr_Date)
{
struct tm *today;
time_t ltime;

time(&ltime);
today = localtime(&ltime);
if(today->tm_year > 99) {
today->tm_year -= 100;
}

sprintf(sDate, "20%02d%02d%02d", today->tm_year,today->tm_mon+1,today->tm_mday);

}

main(){

printf("date =[%d]" ,sDate );

}

이런 소스입니다 함수에서 값을 구하고
메인에서는 바로 그 값을 쓸수있게 하는건데..이게 자꾸 오류가나네요 ㅠ어떻게해야하나요?ㅠㅠ

amiwinner의 이미지

main에서 Data()함수를 호출하지도 않는데 어떻게 출력이 되는건가요?

그리고 tm new로 할당하셔야죠.

yskim의 이미지

void Date(char *szCurr_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(<span>szCurr_Date</span>, "20%02d%02d%02d", today->tm_year,today->tm_mon+1,today->tm_mday);
}
 
void main(void)
{
    //결과값을 돌려받은 문자배열 선언
    <span>char sDate[80];</span>
    //함수호출 추가
    <span>Date(sDate);</span>
    //sDate가 문자배열이므로 %d 를 %s로 수정
    printf("date =[<span>%s</span>]" ,sDate );
}

localtime()은 리턴값이 localtime함수 내부의 정적변수 포인터이므로 위와 같이 하는 것이 맞는듯 합니다.

* MSDN 함수설명입니다.
struct tm *localtime( const time_t *timer );

The gmtime, mktime, and localtime functions use the same single, statically allocated structure to hold their results.

qodwlql의 이미지

감사합니다 덕분에 해결했습니다^^

안녕하세요

yskim의 이미지

tm 구조체의 tm_year는 1900년부터 이므로,
Date함수를 아래와 같이 수정하는 것이 맞겠는데요...

void Date(char *szCurr_Date)
{
    struct tm *today;
    time_t ltime;
 
    time(&ltime);
    today = localtime(&ltime);
 
    sprintf(szCurr_Date, "%04d%02d%02d", today->tm_year + 1900,today->tm_mon+1,today->tm_mday);
}

* time.h 헤더 파일 참조

struct tm{
..
int tm_year;    /* years since 1900 */
...
};
bushi의 이미지

strftime(sDate, sizeof(sDate), "%Y%m%d", localtime(&ltime));

OTL

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.