Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Apr 2006 16:22:10 +0800
From:      "jiangyong jon7808" <jon7808@gmail.com>
To:        freebsd-questions@freebsd.org
Subject:   gcc problem, I can't get the 'ctime(&(statbuf.st_atime)' value in line20.
Message-ID:  <40b94f630604280122v72c432dfx2f3c2e11a220a82e@mail.gmail.com>

next in thread | raw e-mail | index | archive | help
------=_Part_3124_27311234.1146212530733
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline

      1 #include <sys/stat.h>
      2 #include <errno.h>
      3 char *filename =3D "/etc/passwd" ;
      4
      5 int main()
      6 {
      7     struct stat statbuf;
      8
      9     if(stat(filename,&statbuf)=3D=3D-1)
     10     {
     11         printf("Get stat on %s Error:%s\n",
filename,strerror(errno));
     12         return(-1);
     13     }
     14
     15     printf("Filename: %s\n", filename);
     16     printf("Size: %ld\n", statbuf.st_size);
     17     printf("Access Date: %s", ctime(&(statbuf.st_atime)));
     18
     19     printf("%s size: bytes\taccessed at %s",
filename,ctime(&statbuf.st_atime));
     20     printf("%s size:%ld bytes\taccesed at %s", filename,
statbuf.st_size,ctime(&(statbuf.st_atime)));
     21     printf("\n**********************The
end!*************************\n") ;
     22 }





OS :FreeBSD 6.1-RC #36

------=_Part_3124_27311234.1146212530733--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?40b94f630604280122v72c432dfx2f3c2e11a220a82e>