I\'ve been interested in the problem of finding a better prime number recognizer for years. I realize this is a huge area of academic research and study - my interest in this i
can you suggest an improvement
Here you go ... not for the algorithm, but for the program itself :)
argc
and argv
, get rid of them== 1
, not != EOF
sqrt()
returnValue
is not needed, you can return a constant: return 0;
main()
function, separate your program in as many functions as you can think of.