Okay guys, I've just started teaching myself C, right? Well, I've had a little experience with Ada, so I'm not *completely* new to programming, but I'm having a little problem with these two programs that I wrote, and it's the same problem, so it's either go to be a problem with the program I'm using to write/compile/link or a problem with the code.

The problem I'm coming across is that the dos window doesn't stay active long enough to see if my program actually ran correctly. Once I execute it, it pops up, then disappears.

First, I'm using Miracle C to write/compile/link.

Second, maybe you can take a look at the code, see if anything is causing the window to do that there (though it doesn't look like it *frowns*)


#include <stdio.h>

int radius, area;

main()
{
printf( "Enter radius (i.e. 10): " );
scanf( "%d", &radius );
area = (int) (3.14159*radius*radius);
printf("\n\nArea = %d\n", area );
return 0;
}


Any help out there?

~Nymph