Re: stream io in c
On 31 Jul, 15:06, CBFalconer <cbfalco...@yah oo.comwrote:
yes. I was mistaken.
--
Nick Keighley
On 31 Jul, 15:06, CBFalconer <cbfalco...@yah oo.comwrote:
Nick Keighleywrote:
>
... snip ...
>
>
>
>
No, the original is correct. He wants to write out the entire
range available to the char type.
Ron Ford <r...@example.i nvalidwrote:
... snip ...
>
I've tried some variations with this.
int i;
for (i = 0; i <= UCHAR_MAX; i++) putchar (i);
for (i = 0; i <= UCHAR_MAX; i++) putchar (i);
for (i = 0; i < UCHAR_MAX; i++) putchar (i);
No, the original is correct. He wants to write out the entire
range available to the char type.
--
Nick Keighley
Comment