im a complete noob, dont know anything and i really want to learn c++, i got the compiler, dont know how to set it up or run a compiled program, isnt there sopposed to be a .exe? all i got are files the compiler uses and windows says cant run it if it dont know what it is, so what i need right now is a tutorial on how to set it up and make/use .exe files.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
i have the dev+GNU Pascal 1.9.2 compiler, i know absolutly nothing about coding, im just starting to learn.. i tried to do what you said by going to file new then empty project, i copied and pasted what you typed and it still said error in resource file. how do i stop that error?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
If, as you said in your first post, you want to learn C++, I think you might have better luck downloading Dev-C++ (which is a C++ compiler), rather than Dev-Pascal (which is a Pascal compiler).
im a complete noob, dont know anything and i really want to learn c++, i got the compiler, dont know how to set it up or run a compiled program, isnt there sopposed to be a .exe? all i got are files the compiler uses and windows says cant run it if it dont know what it is, so what i need right now is a tutorial on how to set it up and make/use .exe files.
it says error in resource file, uh, is this a problem with stuff being in the wrong directory?
What ?...
Go slow and please give details as you tell what Dev-C++ version you have. And if you have had a problem with it , or compiling a program . or both ?.
Resource File?
dont try to compile a windows app start making simple things
in dev-cpp create a new source file (file -> new ->Source file)
type this out:
#include <iostream>
#include <cstdlib>
int main(int argc, char *argv[])
{
int i;
i = 3
cout << i;
system("PAUSE");
}
then hit f9, it will ask you to save your source file, so save it, and watch your proggie compile!
i have the dev+GNU Pascal 1.9.2 compiler, i know absolutly nothing about coding, im just starting to learn.. i tried to do what you said by going to file new then empty project, i copied and pasted what you typed and it still said error in resource file. how do i stop that error?
Pascal?
This is for Dev C++
Derek
k then tell me where do dl whatever compiler you guys use, i didnt know which one to download so i just guessed and picke a forum.
If, as you said in your first post, you want to learn C++, I think you might have better luck downloading Dev-C++ (which is a C++ compiler), rather than Dev-Pascal (which is a Pascal compiler).
Heres the download page:
http://www.bloodshed.net/dev/devcpp.html
Wayne