Afficher les informations de compilation sur le console

Author:

 date
Download

#include 

int main(void)
{

  printf("Compilation %s, line: %d, on %s, at %s",
           __FILE__, __LINE__, __DATE__,
           __TIME__);

  return 0;
}

Leave a Reply

Your email address will not be published. Required fields are marked *