dev/c/for_uint/for_uint.c

20 lines
194 B
C
Raw Normal View History

2013-09-17 18:16:34 +04:00
#include <stdio.h>
#include <stdint.h>
int
main (void)
{
uint8_t a = 0,
b = 255,
c;
c = a;
do
{
printf ("%d,", c);
}
while (c++ != b);
return 0;
}