我看过这个例子:
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
time_t current_time;
char* c_time_string;
/* Obtain current time as seconds elapsed since the Epoch. */
current_time = time(NULL);
但是,在 Eclipse 中调试时,我在该watch
区域看到:
time(NULL) error evaluating
即使我有
#include <time.h>
我怎样才能解决这个问题?