Postea tu fizzbuzz
#include [orange]stdio.h>
#include [orange]stdlib.h>
int
main(int argc, char* argv[])
{
int j, k, n;
const char s[] = {
0x25, 0x64, 0x0a, 0x00, 0x46, 0x69, 0x7a, 0x7a,
0x0a, 0x00, 0x42, 0x75, 0x7a, 0x7a, 0x0a, 0x00,
0x46, 0x69, 0x7a, 0x7a, 0x42, 0x75, 0x7a, 0x7a,
0x0a, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0a,
0x04, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x04, 0x00,
0x00, 0x10, 0x00
};
if (argc == 2) {
n = atoi(argv[1]);
for (j = k = 1; j [orange]= n; j++) {
printf(s + s[26 + k++], j);
if (k == 0x10)
k = 1;
}
}
return 0;
}