>>263
strftime() 使えばいけるですね。< 日付

以下のようなかんじで。

#include <stdio.h>
#include <time.h>

main()
{
char buf[BUFSIZ];
time_t tloc;

time(&tloc);
strftime(buf, sizeof(buf), "%a, %d %b %Y %H:%M:%S +0000", gmtime(&tloc));

printf("%s\n", buf);
return 0;
}