1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>

int main(int argc, char *argv[]) {
    printf("time is %s\n", __TIME__);
    printf("date is %s\n", __DATE__);
    printf("file is %s\n", __FILE__);
    printf("line is %d\n", __LINE__);
    return 0;
}

© Copyright 2016 Alexander J. Quinn         This content is protected and may not be shared, uploaded, or distributed.