1
0
Fork 0

A makefile and some random fixes

This commit is contained in:
H Hautakoski 2010-08-19 08:28:02 +02:00
parent 6f7482b9f3
commit 1c210b879d
7 changed files with 47 additions and 13 deletions

2
p10.c
View file

@ -19,7 +19,7 @@ int main() {
if (is_prime(i))
s += i;
}
printf("%lli\n", s); /* this format throws som warnings but works so whatever */
printf("%li\n", s);
return 0;
}