Tagged Questions
An outdated and buggy C++ IDE last updated in 2005. It is bundled with the *very* obsolete GCC 3.4 by default. **Do not use**
9
votes
4answers
356 views
6
votes
1answer
865 views
Defining Bytes in GCC Inline Assembly in Dev-C++(.ascii in AT&T syntax on Windows)
The code below is just showing a Message Box on the screen.
The addresses are hardcoded to facilitate:
int main ()
{
asm("xorl %eax, %eax \n"
"xorl %ebx, %ebx \n"
...
5
votes
3answers
168 views
What files of my project should I put in repo
I'm using Dev-C++ IDE for C programming.
I want to put my project in Github but I'd like to know which type of files should I put there. I mean, the project folder has .o, .layout, .dev (dev-C++ ...
5
votes
3answers
283 views
How can I make cout faster?
Is there any way to make this run faster and still do the same thing?
#include <iostream>
int box[80][20];
void drawbox()
{
for(int y = 0; y < 20; y++)
{
for(int x = 0; x ...
4
votes
3answers
448 views
MessageBoxA in Windows AT&T Assembly
I'm trying to call MessageBoxA() directly in assembly, using gcc inline. However I need to do this in 2 ways: first is using dynamic addressing, with LoadLibrary() and GetProcAddress() - I found a ...
4
votes
2answers
2k views
OpenGL v2.0 Shaders with Dev-C++ and SDL?
I was about to rebuild my library in Dev-C++, under Windows; however, the shader functionality I've added in the meantime is not supported, the compiler could not find the related functions ...
3
votes
1answer
236 views
getline wont work in switch and cin does not take the data appropriately? Can anyone help?
Hey guys, Im working on a project for my job, but I cant seem to figure this out.
I need to take in the make model and years of the car the particular product fits. The program is going to write a ...
3
votes
3answers
598 views
eof problem c++
i am using Dev C++ on windows xp
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main ()
{
string STRING;
ifstream infile;
...
3
votes
2answers
87 views
Texturing a model
I have coded a 3d-terrain engine with simplistic model engine on top of it.
I use a rectangular heightmap for my terrain, so texturing those triangles is pretty straightforward.
However, on ...
2
votes
4answers
79 views
How to get window to stay open after C++ code runs? [closed]
Possible Duplicate:
How to stop C++ console application from exiting immediately?
I am trying to see my results, what do I do to my code so I can see if what I did is correct?
#include ...
2
votes
5answers
101 views
Calculating two different averages in C++
My assignment is to calculate bowling averages. I have five players, and three games for each player. I currently have two loops running, one for the player, and the other for the game number. I need ...
2
votes
9answers
244 views
A strange sizeof() bug occured on DevC++
I know I shouldn't use Dev-C++ but it's mandatory in school so I can't do anything about it.
Topic is pointers in C/C++ and a bug occurred while measuring the length of an integer array. See the code ...
2
votes
2answers
214 views
How to resolve “class must be used when declaring a friend” error?
class two;
class one
{
int a;
public:
one()
{
a = 8;
}
friend two;
};
class two
{
public:
two() { }
two(one i)
{
...
2
votes
4answers
549 views
Cygwin gcc compiled fails in IDE complaining about 'exit' undeclared
When I compile a program using just
gcc code.c
There are no messages, and an output file is generated successfully. The outputted file works. However, when I try to the same cygwin installation's ...
2
votes
3answers
759 views
How to make a Web Browser toolbar?
How do I make a Web Browser toolbar in C++.
in dev-C++ for I.E with no addon libraries?
2
votes
2answers
2k views
Dev C++ to compile C source file
How can I use Dev C++ to compile C source file. I thought it would automatically do it, but for some reason it compiles with several errors and I think its because you have to make changes for it to ...
1
vote
1answer
127 views
linker nuisance in OpenCV 2.3.1 on DevCpp
A little description about my environment:
DevCpp 4.9.9.2 with OpenCV 2.3.1 on Windows Vista Home Premium SP1 32-bit
About my project - my project's .dev (FirstCVproj.dev) file is in ...
1
vote
3answers
82 views
Dev C++ gives different result in case of pointer address
I have a following set of codes
int main(){
int x = 36;
int const * p1;
p1 = &x;
printf("Values at p1: %d\n", *p1);
p1=0;
printf("Addresses pointed to by p1: %p ", &p1); ...
1
vote
1answer
69 views
difference dev-cpp and Microsoft Visual C++ math.h
a few days ago, I worked on project in VC++. I found out, that math.h in VC++ differs much from dev-cpp math.h. Particulary its round function, that is not present in Visual C++ math.h, but is ...
1
vote
4answers
231 views
C programming elementary problem
#include <stdio.h>
#include <math.h>
int main (void)
{
float inches;
printf("Enter the number of inches\n");
scanf("%f\n",&inches);
float feet;
float cm;
...
1
vote
2answers
358 views
Having issues using the cURL libraries for Dev-C++ in Windows 7
I reciently installed the cURL libraries in Dev-C++ using the Packman.exe which is included in the Dev-C++ install. When I try to use #include <curl/curl.h> I do not get an error, so I am ...
1
vote
1answer
930 views
Dev-C++ - [Build Error] [main.o] Error 1
Im running into big trouble with my compiler Dev-C++, every time i compile any project, whether it is 1 im working on, or a completely fresh 1 I get the same error every single time, I have been on ...
1
vote
1answer
412 views
Using pthreads with Dev-C++ - Odd Error
trying to get a feel for pthreads and multithreaded programming in C. Ive managed, thanks to this site, to get the library linked so that it no longer gives me errors in the compiling.
Im trying to ...
1
vote
5answers
607 views
Get parent directory from file in C++
I need to get parent directory from file in C++:
For example:
Input:
D:\Devs\Test\sprite.png
Output:
D:\Devs\Test\ [or D:\Devs\Test]
I can do this with a function:
char *str = ...
1
vote
1answer
82 views
1
vote
3answers
875 views
integer constant is too large for “long” type [closed]
Possible Duplicate:
long long in C/C++
Writing a simple program for a project Euler problem. Refuses to compile because "integer constant is too large for "long" type", even though it ...
1
vote
3answers
159 views
Problem with compiling C code
I'm using Dev-C++ 4.9.9.2 with MinGW to compile this code:
/* get the information about the group. */
struct group* group_info = getgrnam("PLACEHOLDER");
/* make sure this group actually ...
1
vote
2answers
467 views
“An access violation (Segmentation Fault) raised in your program.”
My C++ program compiles and works up until I call this function from main():
int uword(){fstream infile("numbers.txt");
fstream exfile("wordlist.txt");
string numb[numoflines];
string ...
1
vote
2answers
1k views
curl/curl.h on Windows
I have the following in my c++ script:
#include "curl/curl.h"
When I try to compile it, I get the following error:
\Users\username\Desktop\Temp\talkbot\main.cpp ...
1
vote
3answers
579 views
Microsoft Visual C++, compiling small source codes without project file
Well, I've been using Dev-C++ for a while for learning the language [c++], and some stuff wouldn't work properly, like global and local variables. Then I decided to download Microsoft Visual C++ to ...
1
vote
4answers
259 views
Going from Dev-C++ to VC++
Yes, it's a noob question...
I have been using Dev-C++ for all my projects so far, but it is incredibly outdated, and so where the libraries. So I opened up my copy of Visual C++ and copied the code. ...
1
vote
1answer
332 views
Installing Allegro in Dev-C++ using their Packages
I'm trying to install Allegro in Dev-C++, and rather than do it manually, I noticed the new version was in the available packages, so that'd be easier.
Here it is in the manager.
Here it is ...
1
vote
2answers
232 views
porting DevC++ to linux
I wanted to use DevC++ on Linux, so I've started it with wine and everything is OK until it came to run the file.
The C file compiles well and a .exe files generated that is able to run on Linux ...
1
vote
1answer
174 views
What's the most popular compiler, and what's so bad about MSVS? [closed]
I've been using MS Visual Studio for a lot of projects, but I notice a lot of people here like to complain about Microsoft and Visual Studio.
So I'm wondering, what does everyone use? Dev-C++? ...
1
vote
3answers
657 views
C : Code still runs without any includes (Bloodshed's Dev-C++)
I am currently learning and experimenting with C and am using Bloodshed's DEV-C++ as an IDE.
Now, I just realized that the following piece of code (as it is...no includes or nothing) compiles and ...
1
vote
1answer
468 views
DevC++ (Mingw) Stack Limit
Is it possible to set the stack limit in DevC++? Basically the same as "ulimit -s" would do on linux.
1
vote
4answers
9k views
Header files in dev-C++
I'm trying to add an header file to dev-C++ but when I compile it it doesn't work.
Here are my exact steps (for my example, I'm trying to get mysql.h to work):
copy "mysql.h" into ...
0
votes
1answer
15 views
Can someone give me a link where i can find DevPackages for Xerces to use it with Dev-C++
Can someone give me a link where i can find DevPackages for Xerces to use it with Dev-C++
I am using Dev-C++ 4.9.9.2 version and want to use Xerces 3.1.1
0
votes
1answer
36 views
[Solved]find all eigenvectors in matlab or in DevC
now i'm working with eigenvectors and eigenvalues on the Matlab!I used [V,D] =eigs(A), but it only generate 6 largest eigenvalues and corresponding eigenvectors! Do you know any libraries that ...
0
votes
1answer
215 views
configuring opencv 2.3.1 with bloodshed dev c++ IDE (4.9.9.2)
I have to make a webcam based eye tracking project, and for that i need to test my thesis of blurring,then thresholding then eroding and then edge detection and then Hough's Circle detection.. which ...
0
votes
2answers
74 views
Compile Link LUA5.1 Lib. Error in dev-cpp
this is my dev-cpp compiler log:
rm -f main.o luaTest.exe'
gcc.exe -c main.c -o main.o -I"E:/Dev-Cpp/include" -I"E:/Lua/5.1/include"'
gcc.exe main.o -o "luaTest.exe" -L"E:/Dev-Cpp/lib" -L ...
0
votes
0answers
33 views
Dev-C++ with wxWidgets
How can I use wxWidgets with Dev-C++ without the DevPack?
I have already installed the wxPack and added these settings in Dev-C++:
Libraries:
D:\wxWidgets2.8.12\lib\gcc_lib
C++ includes:
...
0
votes
0answers
57 views
Code works perfectly on dev c++ but not on gcc 4.3.2
This code works perfectly on dev but causes a run time error on gcc? Can I know why?
This program is used to find minimum iterations to add a number and its reverse continuously until a palindrome is ...
0
votes
0answers
100 views
Dev C++ open windows explore and select file path [closed]
I am working on a C++ project. I am using WxDEV C++ for that. I want to open windows explore and select one of the file and get the path of that file.....
I want to open windows explore, when click a ...
0
votes
0answers
26 views
Adding a header in Dev-C++
I am relatively new to C++ and made a switch from Visual C++ to Dev-C++ as my compiler/editor. But, whenever I make a header and try to #include it into my main .cpp class, I get an error. Here's the ...
0
votes
0answers
101 views
Linking issue with dev-c++ on Windows
I'm taking over a C++ project developed with Dev-C++ (yeah, I know...): it compiles fine but it won't link and the error message is not very indicative:
Compiler: Default compiler
Building Makefile: ...
0
votes
0answers
72 views
Problems installing Mysql Connector C++ in Windows
I'm trying to install the mysql C++ connector in windows, however I can't seem to get it to work, I keep getting a linker error 'undefined reference to mysql_get_client_into'.
The compiler I am using ...
0
votes
3answers
70 views
c++ request for member `A' in `B', which is of non-class type `C'
I get the error message request for member 'namn' in 'post', which is of non-class type 'telefonbok[10]', or similar versions of it.
I think it has to do with the following bit of code:
struct ...
0
votes
0answers
122 views
I can't compile an Allegro project! (C++)
I'm using Dev-C++, and I like it, but when I first tried allegro with it, it told me that
there was a linker error. I looked that up, and I fixed it, but now it won't compile. It
just says that I ...
0
votes
0answers
19 views
Need help setting up the IDE
I want to take a look at c, and GTK seems to be the simplest way to create some simple GUI apps on Windows.
I've used the "folloing commands when calling compiler": -mms-bitfields
I've added the ...