Introduction
Statistics
Contact
Development
Disclaimer
Help
bitreich.org home page
#include <stdio.h>
#include <stdlib.h>
main()
{
long i;
int col;
col = 0;
printf(" dd ");
for(i = 0L; i < 480L; i++) {
printf("%08lu", i * 2560L);
if(++col == 6) {
printf("\n dd ");
col = 0;
} else
printf(", ");
}
}