20 lines
194 B
C
20 lines
194 B
C
|
#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;
|
||
|
}
|