Since http://www.smorgasbordet.com/pellesc/ seems to be offline, you can find the Download of Pelles C here in this Forum.
When I try to run the following code I get "error #2048: Undeclared identifier 'i'.". Here is the code.
#include <stdio.h>int main( void ){ int i = 0; while (i < 10) { printf("i is now %d!\n", i); i++; } printf("All done!\n"); return 0;}
Boy, I feel pretty silly now. Thanks for the help.