Mail Archives: djgpp/1998/01/21/20:23:50
Thanks for pointing this out! I had to look in my "sent mail" because I didn't believe it! The things you miss...
> > printf("Size of integer: %d\n", sizeof(int);
> > printf("Size of char: %d\n", sizeof(char);
> > printf("Size of float: %d\n", sizeof(float);
> > return (0);
> >}
> It could also be revised to include the close-parenthesis which a function
> call needs. Something about `parse error...' :)
>
> This time for sure.
>
> #include <stdio.h>
>
> int main(void)
> {
> printf("Size of integer: %d\n", sizeof(int));
> printf("Size of char: %d\n", sizeof(char));
> printf("Size of float: %d\n", sizeof(float));
> return (0);
> }
>
>
> Nate Eldredge
> eldredge AT ap DOT net
>
>
>
>
- Raw text -