theremin
Jul 26, 2006
This following program compiles w/o errors, but it's not running when I try to run it. The screen just flinches. #include <cstdlib> #include <iostream> using namespace std; ...
why don't you try changing this:
for (count = 0; count < 5; count++)
cout << alpha[count] << " ";
to:
for (count = 0; count < 5; count++) {
cout << alpha[count] << " ";
}
I know in java you can do the first, but I'm not sure if it works the same in C, anyway, give it a shot. (My C is really really rusty)