A free, open-source, portable and extensible C/C++ IDE. Old Bloodshed versions are buggy and ship with a *very* outdated GCC compiler. Do yourself a favor: don't use the old versions. See "info" for alternatives.
0
votes
2answers
57 views
Trying to open a file that doesn't exist prevents subsequent opening in dev-C++
I am trying to execute this very simple piece of code in dev-C++:
int fflag, num;
char nomefile[40];
fstream str;
fflag=0;
while (fflag==0)
{
cout<<"\nFile name? ";
...
0
votes
1answer
17 views
Binary Tree (Not Binary Search Tree) Creating New Node and Children
I am trying to implement a method to create a node to insert into a binary tree (not bst).
struct node{
struct node *left;
int data;
struct node *right;
};
typedef struct node ...
0
votes
1answer
32 views
I have a .dll that I want to edit with the source code. Which files would I need to edit?
I only want to edit a function in the .dll.
I have these following file types: .c, .h, .lib, .def, and the actual .dll.
Say I want to change a function's parameters from 1 to 2 variables, which ...
1
vote
2answers
28 views
Dev C++ Crashing with OpenCV
I'm writing a simple algorithm to convert a RGB image, from my webcam, to HSV, it's compiling fine, but crashes when the .exe is executed.
#include <cv.h>
#include <highgui.h>
int ...
0
votes
2answers
40 views
Calling a function without taking allocation of object in c++
Is it possible to call a function using reference operator(->) without allocation of memory.
I tried this code in some case
Foo *fooObject;
fooObject->someFunction;
I have confusion about this ...
0
votes
0answers
61 views
C plus plus offline reference [closed]
I will have to solve some C++ console problem without an internet connection. Theoretically the PC will be clean, with only the MS office installed along with bloodshed dev-cpp compiler. I must admit, ...
0
votes
0answers
20 views
ITaskbarList using - linker-error
I have a problem with ITaskbarList and deleting tabs form taskbar. I used the code that's written in this (Hide A Console C++ Program From Taskbar) article, but when I try compile it I get linker ...
0
votes
1answer
45 views
Call C structure data from C#
I have make a dll from dev c++.and I want to call the function.
the dev c++ code like this :
//the head file
struct sAdd
{
int* aarr;
int* barr;
int length;
};
DLLIMPORT int AddStruct (struct sAdd*);
...
0
votes
1answer
100 views
Dev C, math.h problems
I just installed devcpp, and am attempting to make sure it is working. When I ran into compile errors surrounding math.h. I am using a couple of simple programs that have been compiled and run ...
0
votes
0answers
36 views
Disable mouse scrolling in VC++
How to disable mouse scrolling in VC++, which is previously activated & handled via OnMouseWheel?
EnableScrollBar(SB_BOTH,ESB_DISABLE_BOTH) can disable the arrows & scrollbar but not ...
0
votes
1answer
52 views
How to incorporate two seperate c++ files into one program?
I am new to C++ and I have a small question.
I have been trying to get two files to operate within each other by using the goto function to try to jump from one place in one file to the other. This is ...
0
votes
1answer
79 views
Including Qt libraries in Dev-C++
All I want to know is how to import the Qt libraries in Dev-C++ so it will provide the same functionality as QT Creator 2.7.0. I know how to add 'include' and 'libraries' folders in Dev-C++ compiler ...
1
vote
2answers
48 views
How to Access a Dynamic struct from an external function C++?
I'm trying to make a very simple text-based game and I encountered an error when I tried to access a dynamic struct from an external function. I initialized all variables and structs in my header file ...
1
vote
3answers
48 views
Programm Crash case of too large MAX value
I implement Sieve of eratosthenes and it works fine. But if I increase the MAX value to something like 50000 the Application crash with a unhandled win32 exception. I think this happened because of a ...
0
votes
0answers
52 views
Separate Compilation and Linking in C++ using Dev-C++
Thanks pals for your response so far on my previous post.
I can now do the class things but there is still a stumbling block on my path that I just have to get rid of.
I don’t have any problem with ...
5
votes
1answer
195 views
How do i build a release exe with DEV C++?
I want to build the exe to work on another computer. I believe I have found the dll's the program needs and included them in the same directory with the application along with all the files the ...
0
votes
0answers
29 views
DevC++ crashes this code but Visual Studio 2008 runs without problems. Why?
When I run below code in DevC++ (Version 4.9.9.2 Orwell Update 5.3.0.3 which uses TDM-GCC 4.6.1.64 compiler)it works until 3 iterations of simple game but after the 3rd or 4th iteration CPU usage ...
1
vote
2answers
73 views
Why the output just flashes when I do not use getch()?
When I compile and run the following code in Dev C++,
#include <stdio.h>
main()
{
printf("Hello world!");
}
The output just flushes. When I add getch, it stays.
#include ...
0
votes
1answer
86 views
Initialize array of strings in Dev C inside of class constructor
I am having a difficulty trying to initialize an array of strings. I am working with one class that has different methods: one is intended to charge an array, other is intended to eliminate elements ...
0
votes
1answer
90 views
SDL DevC++ Linker Issue
I started the lazyfoo SDL Tutorials(http://lazyfoo.net/SDL_tutorials/lesson01/windows/devcpp/index.php) and i followed the install instructions exactly as written but when i compile this -->
#include ...
0
votes
1answer
170 views
Glut in Dev C++ error “redeclaration of C++ built-in type `short'”
I am beginner to GLUT in C++. I am using Dev C++ as my IDE. I have this simple triangle drawing code and it produces an error "redeclaration of C++ built-in type short ". But When I put ...
0
votes
2answers
77 views
g++ with Dev-C++
It has come to my understanding that the error
[Linker error] undefined reference to `__gxx_personality_v0'
is caused by trying to compile a C++ program with the gcc compiler. This would be solved ...
0
votes
2answers
47 views
Use Tcl library with C code gets errors
softwarre: ActiveState ActiveTcl 8.5.13.296436/Win7/DEV C++ 5.4.1.
ActiveTcl is installed at D:/TCL/.
error information:
E:\src\c\tcl\main.oIn function `Tcl_AppInit':
8E:\src\c\tcl\main.cundefined ...
0
votes
0answers
104 views
regex undeclared (Dev C++)
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <regex.h>
using namespace std;
string input;
int main()
{
//Input .ply file
...
-2
votes
1answer
73 views
different output with Dev-C++ and xcode compiler [duplicate]
When I compile following code it gives different output in different environment.
int a=4;
a = ++a + ++a;
printf("%d",a);
compiling this in Dev-C++ gives 12 while in xcode LLVM compiler it gives ...
4
votes
1answer
104 views
My c program prints “out of memory”-error but there are lots of memory space available
My program returns memory error without using even more than 1 MB. I write C in dev-cpp compiler. The original program is too large to put it here. This very simple program works for me:
int ...
1
vote
2answers
94 views
Reading an OpenOffice file in C/C++
I am curious as to how I might be able to use my compiler to open OpenOffice documents. I know I could probably convert it into a text file or rtf but I wonder if it is possible to read straight from ...
-2
votes
2answers
47 views
Multiple times input a file to a executable file
I am working on a learning algorithm, and I am giving inputs from command line using input file, like following:-
c:\user\document> SBP < input.txt
But I want to input this file multiple ...
0
votes
1answer
421 views
IP camera and OPENCV
Good day!
I am using Dev-C++ as my IDE and the library OpenCV.
I need to fetch the video taken by my IP camera and process it using the OpenCV.
Can someone teach me how will I gonna do it. My OS is ...
0
votes
0answers
145 views
Trying to Run Allegro 5 Program outside of Dev C++ results in error
I have a program which uses Allegro 5.0.5. It is a basic shooting game that I made while following tutorials to learn how to use the library. I installed Allegro 5 in Dev C++ with a dev pack, and when ...
0
votes
1answer
154 views
Copy .txt to int array, then save into another file
// Edit : I've discovered my mistake. Still I'm missing 1 thing: It doesn't count lines correctly. If the last char in .txt isnt '\n' it counts 1 less line. If I hit it it counts 2 much. What's wrong ...
0
votes
4answers
51 views
devc++ input from file does not work
I'm trying to redirect a .txt content to .exe
program.exe < file.txt
and contents of file.txt are
35345345345
34543534562
23435635432
35683045342
69849593458
95238942394
28934928341
but the ...
0
votes
0answers
55 views
any tools can be used to check memory leak with the Dev C++
I am wondering whether there are any tools that can be used to check the memory leak with the IDE DEV C++. Or how can I find the memory leak under Dev C++?
i googled a lot ,but found nothing related ...
1
vote
1answer
163 views
Parsing an XML file in C++ using RapidXML with Dev C++
So I have to parse an XML file for my C++ project in class and I'm using RapidXML. The rapidxml_iterators.hpp file is giving me some troubles. I'm using Dev C++ by the way
At first, I had the ...
1
vote
1answer
312 views
C++ win32 program for creating menu bar(program compiles and runs, window is also displayed but no menu bar appears)
I am referring to this tutorial for creating menu bar in window:
http://www.winprog.org/tutorial/menus.html
The program gets successfully compiled and runs. I can see the window but not able to see ...
0
votes
2answers
89 views
How to get preprocessed code from Dev-c++ under Windows XP?
How to get preprocessed C++ code from DevC++ under Windows XP ? I've read about creating gcc -E file.cpp file, but I still can't connect the dots, how to run this file ? After I've compiled it ...
0
votes
3answers
143 views
C++ Reading fixed number of lines of integers with unknown number of integers in each line
I'm trying to read in data and solve simple problem, data :
3 - number of lines to read in
1 1
2 2 2
3 4
after each line is entered I would like to obtain sum of entered numers, but ...
-3
votes
1answer
109 views
Where is the “int main” Function in the Dev C++ Windows Template?
I a making a GUI project and I when I start up, I want two windows:
one main window, and the other a SYSMENU window on top to create a new project etc. I am using the template and I want to remove ...
-3
votes
2answers
138 views
How to work with Dev C++
I am new in programming. but i know turbo C & i can work with it. But how to work on Dev C++?
i means 1.How to Compile & 2. How to Run. I have Windows so if anyone help me with proper example ...
0
votes
1answer
101 views
DEV C++ compiless but Visual studio doesn't
What's wrong in this code? Why 1 compilator says its ok and run it but other , from Microsoft, shout about tons of errors. I can't even find thing is wrong coz bilion of linies of error.
#include ...
0
votes
0answers
34 views
How to use libssh library in Dev cpp?
I am aware the Dev-cpp isn't the best, and I don't usually use it, but lets stay off that topic for now.
I don't have much experience working with none standard libraries, so I don't fully ...
-2
votes
1answer
188 views
How to make programs compiled under Dev C++ smaller? [closed]
I'm using version 5.4.0 and simplest program (empty screen) have almost one megabyte.
For example, after compilation this below simple program has 1 276 KB. But deleting #include makes file really ...
-3
votes
2answers
72 views
I am getting an error in Dev C++ saying ( invalid operands of types `const double' and `<unknown type>' to binary `operator<<' )
Here is where the start of my code is . AT the very bottom of the code, I will have the error spot in detail.
#include <iostream>
#include <iomanip>
#include <cmath>
using ...
-1
votes
1answer
116 views
Using Windows GUI to input decimal values and display the corresponding hexadecimal values
How can I retrieve in-putted integer values from a textbox in windows API design in C to convert them to string and then display these values in hexadecimal number through a static label in C.
...
1
vote
2answers
107 views
What compilers support CUDA
I found some problem with Visual Studio , My project that use openMP multithreading was twice slow on Visual Studio 2010, than on Dev-C++ , Now I wrote my other project that uses CUDA technology , I ...
2
votes
1answer
112 views
wx dev-Cpp GDI plus problems
For some reason I am totally lost on this issues and been looking for an hour without any help.
in dev c++ I keep getting this error and it points to the line in [strong]bold[/strong]:
"18 ...
0
votes
2answers
269 views
dev cpp win32 the program can't start because sqlite3.dll is missing
I am using dev c++ IDE which used ming gcc(i am not sure of it)
I wanted to use sqlite3 in my win32 c application
I downloaded sqlite3.dll and sqlite3.dev and used dlltool to create a .a file like ...
1
vote
2answers
138 views
dev c++ outdated libs and includes
Includes and libs in latest MinGW version of dev c++ are outdated. For Example there is no functions like QueryFullProcessImageName or GetProcessImageFileName. Is it possible to simple update them?
0
votes
2answers
108 views
C++ class instance identifier undeclared
So, I'm trying to compile my code, but the compiler keeps complaining that "'mysnake' undeclared (first use this function)", but I declared it.
This is my Main.cpp, wehre it is declared.
#include ...
-1
votes
3answers
96 views
Ignoring second if statement
I'm trying to write a program to calculate the volume and the amount of conditioner to add to fish tanks of either spherical or rectangular shape.
I want it to ask the user if the tank is circular, ...




