scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

0025-string.c (85B)


      1 int strlen(char *);
      2 
      3 int
      4 main()
      5 {
      6 	char *p;
      7 	
      8 	p = "hello";
      9 	return strlen(p) - 5;
     10 }