-5
#ifdef WIN32
#else
#include <string.h>
#include <time.h>
#include <sys/types.h>
#include <conio.h>
#include <stdio.h>
#include <sys/timeb.h>
#include <time.h>
#include <conio.h>
#include <unistd.h>
#endif

int main()
{
 long time_ms;
#ifdef WIN32
struct _timeb timebuffer;
_ftime( &timebuffer );
time_ms = (long)timebuffer.time * 1000 + (long)timebuffer.millitm;
printf("Windows timing %ld", time_ms);

#else
struct timeval t1;
struct timezone tz;
gettimeofday(&t1, &tz);
time_ms = (t1.tv_sec) * 1000 + t1.tv_usec / 1000;
    printf("Other timing %ld", time_ms);
 #endif
//    return time_ms;
}`

エラー: ここに画像の説明を入力

これは完全なコードの一部ですが、個別に実行すると同じエラーが発生し、解決策が見つかりません。エラーのスクリーンショットを添付しました

4

1 に答える 1