Since 5/6/2012 10:06:56 AM, oompah62 has written 0 articles and participated in 0 conversations. oompah62 signature: oompah62
oompah62's articles:
Items(3) /1
Portability2524 (6/21/2005 2:46:19 PM) comp.lang.c From lurking on this most excellent newsgroup, I have garnered that an expressed benefit of having a standard is portability of code. I see a lot of open source endeavors that inspire my awe, but I can't see ... Stephen
Why does this not work?518 (6/12/2005 10:56:00 PM) comp.lang.c #include #include #include int main (void) { static char * contents = "Line1\nLine2\nLine3\nLine4"; FILE * tmp; char readbuf[256]; size_t len, n = 0; puts (contents); len = strlen (... Stephen
structure padding #2533 (5/20/2005 2:17:46 PM) comp.lang.c I this helloworld portable? I am vaguely aware of something called "structure padding" and wonder if it could affect this program since the struct only contains chars. #include #include #include int mai... Stephen