Hey, I put the counting program in Bloodshed and used the GNU compiler to ,uh, compile it. Here's the new one:
#include <stdio.h> int main (void) { int count, number; printf (“How high should I count?”/n); scanf (“%d”/n, &number); count = 0; while(count <= number) { printf(“%d”, count); count++; }; scanf (“%c”);
return 0; };
The /n goes outside of the quotes, and you left out some semicolons. This is as far as I could figure it out, but it still doesn't work. Maybe someone with more programming skills than me could fix it please?
~~~ROBO~~~
|