Name: Anonymous 2010-05-24 12:37
Hi, /prog/.
What is the most beloved syntax style here? KR? BSD? GNU, perhaps?
What is the most beloved syntax style here? KR? BSD? GNU, perhaps?
int
main
(
int argc,
char **argv
)
{
const char *s;
s = "Hello world!";
printf("%s", s);
return 0;
}