Due to server problems the website is temporarily offline! Visit http://www.smorgasbordet.com/pellesc/ to download Pelles C.
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.