C程序打印当前时间

时间:2014-11-13 02:01:32

标签: c windows time

我正在学习C程序。当尝试运行代码时,我收到错误:[错误] ld返回1退出状态

   #include <stdio.h>
   #include <time.h>

    void main()
     {

       time_t t;
       time(&t);

       clrscr();

       printf("Today's date and time : %s",ctime(&t));
       getch();

      }

有人可以解释一下我在这里做错了吗?

我试过这段代码:

 int main()
   {

  printf("Today's date and time : %s \n", gettime());
  return 0;

   }

  char ** gettime() { 

   char * result;

    time_t current_time;
    current_time = time(NULL);
   result = ctime(&current_time);

     return &result; 

   }

但仍然显示错误为:错误:调用对象'1'不是函数 in current_time = time(NULL);线。代码有什么问题

2 个答案:

答案 0 :(得分:6)

我认为您正在寻找类似的东西:

#include <time.h>
#include <stdlib.h>
#include <stdio.h>

int main() {

    time_t current_time;
    char* c_time_string;

    current_time = time(NULL);

    /* Convert to local time format. */
    c_time_string = ctime(&current_time);

    printf("Current time is %s", c_time_string);

    return 0;
}

答案 1 :(得分:0)

你需要改变clrscr();系统(清除).Below是您的代码的工作版本:

#include<stdio.h>
#include<time.h>

void main()
 {

   time_t t;
   time(&t);
   system("clear");
   printf("Today's date and time : %s",ctime(&t));

  }