heyi just wrote and comiled with Dev-C++
----
they said that its meant to come up with the message...but all it did was flash..i didnt see the message :(
is that meant to hpn?
That's because DevC opens a window to run the program, runs it, and when the program ends, closes the window. Change your code to this:
#include <stdio.h>
int main()
{
printf("This is output from my first program!\n");
getchar();
return 0;
}
Please use Code Tags, not colors. And please read this about using computer-speak.