hey guys Im reading The C programming Language and trying to run hello world in xcode and keep running into a problem. The code im using is..
When I click run to compile it in xcode i get an error saying, unknown type name "library". Any ides what im doing wrong here? Thanks
Code:
#include <stdio.h>
library
main ( )
{
printf ("hello, world/n" ) ;
}
Last edited by a moderator: