So I've been assigned a program that sieves all non prime numbers from 0-1000. I've written the meat of this code but have a problem. Normally I have a Linux computer with a different compiler, but for this one I'm stuck using Visual Studio 2010. Here's what I have so far. My only problem is the line "int *array = calloc(topval + 1, sizeof(int));" The error is that type void* cannot initialize type int*. Any solutions would be appreciated!!...