fork download
  1. #include <stdio.h>
  2. #include <time.h>
  3.  
  4. int main(void) {
  5. time_t test;
  6. time(&test);
  7. _Static_assert (sizeof(long long) >= sizeof(time_t), "long long cannot hold time_t");
  8. printf("test: %lld\n", (long long)test);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
test: 1380555722