jor1k
jor1k copied to clipboard
gcc compile err
trafficstars
~ $ cat main.c
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char * argv[])
{
int i;
for (i = 1; i < argc; i++)
{
printf("%s%s", (i == 1 ? "" : " "), argv[i]);
}
putchar('\n');
exit(0);
}
~ $ gcc main.c
/tmp/cccDMhHm.s: Assembler messages:
/tmp/cccDMhHm.s:61: Error: operand out of range (1073741797 not between -3355443
2 and 33554431)
~ $
Please try it again.