Why don't you look some stuff up before you ask dumb questions... It doesn't take much of a brain to look through Dev... To make an exe in dev, first you write your code, example:
Code:
#include <iostream.h> //Inlcudes the header iosteam.h, so we can use cout.
int main()
{
cout<<"Hello World!"; //Displays hello world
getchar(); //Pauses
return 0; //Returns a value
}
Go up to one of the menues, It probably says Compile, thats what you call it when you create an exe, and click compile, or F9, I'm pretty sure compiles it and runs it.
Good Luck
Bookmarks