So I install codeblocks
Write the traditional hello world program, compile, build and run it. It works
I make some changes to refresh my C Skills.. Very rusty
//C hello world example
#include <stdio.h>
int main()
{
char InString[10]="Hello6789";
int Counter;
for ( Counter = 0;Counter <= 10; Counter++ )
{
printf("Value of Counter is: %d\n", Counter);
}
return 0;
}
I get a warning about the unused InString variable.. no big deal. It compiles, builds and when I run it, it still says Hello World.
The obj and/or exe file are not being updated.
I am not sure why.. any help appreciated