Dev C%2b%2b Wont Compile

when i try to compile my stuff, it just says the system cannot find the file specified. Also heres the code for more details:
and also when i open Dev-C++, it shows a window, heres a screenie:
http://img101.imageshack.us/img101/9...zzzzzzz9qv.png
and BTW i also am trying to learn to make psp homebrew, while learning regular C (coz i need to) so i use CYGWIN to compile my EBOOT.PBPs and i have pspsdk set on it, so im forced to use Dev-C++
P.S. the code is from a tutorial i am using on this site. You probably know that, but just to make sure.

Made with ezvid, free download at To compile a c program by dev c. Dev-C is a free IDE for Windows that uses either MinGW or TDM-GCC as underlying compiler. Originally released by Bloodshed Software, but abandoned in 2006, it has recently been forked by Orwell, including a choice of more recent compilers. It can be downloaded from. Although C is designed to have backward compatibility with C there can be many C programs that would produce compiler error when compiled with a C compiler. Following are some of them. 1) In C, it is a compiler error to call a function before it is declared. But in C, it may compile (See https://www.geeksforgeeks.org/g-fact-95/). I am unable to run the programming software 'DEV C' on Windows. Why i cannot compile my project in 'DEV C' with window 8.It is ok when i use window 7 Original title: Programming software'DEV C' cannot be compiled in window 8. The overwhelming probability is because you’re wrong and it does contain at least one error. OK, so there are such things as compiler bugs and even operating system bugs in which a program error-free itself fails to execute correctly.

The above solutions are best, in spite of the undeniable fact that, there are 2 workarounds which all and sundry makes use of (and that i despise).

  • Related Questions & Answers
  • Selected Reading
Dev
CC++Server Side ProgrammingProgramming

The C++ language is designed by adding some additional features like Object Oriented concepts with C. Most of the C programs can be compiled using C++ compiler also. Though there are some programs that cannot be compiled using C++ compiler.

Let us see some code, that will compile in C compiler, but not in C++ compilers.

In this program there will be one compilation error for C++ code. Because it is trying to call a function that is not declared before. But in C it may compile

Live Demo For C.

Example

Output(C)

Output (C++)

In C++ one normal pointer cannot point some constant variables, but in C, it can point.

Live Demo For C.

Example

Output(C)

Output (C++)

In C++, we have to explicitly typecast when we want to assign some other pointer types like int*, char* to void pointer, but in C, if it is not type casted, it will be compiled.

Live Demo For C.

Dev

Example

Output(C)

Output (C++)

In C++, we must have to initialize the constant variables but in C, it can be compiled without initializations.

Live Demo For C.

Example

Output(C)

Output (C++)

In C we can use some variable named ‘new’. But in C++, we cannot use this name as variable name because in C++, the ‘new’ is a keyword. This is used to allocate memory spaces.

Live Demo For C.

Example

Output(C)

Output (C++)

We cannot compile the following code in C++. This will return an error when we are trying to convert int to char*. But in C, it will work fine.

Live Demo For C.

Dev C 2b 2b Wont Compile Cheat

Example

Dev C 2b 2b Wont Compile File

Output(C)

Output (C++)

In C we can use void as return type of main(), but in C++, we have to use int as return type of main().

Dev C 2b 2b Wont Compile C++

Live Demo For C.

Example

Dev C 2b 2b Wont Compiler

Output(C)

Output (C++)