| |
Rating
Thread /
Thread Starter
|
Last Post  |
Replies |
Views |
|
|
by WaltP
Guidelines for Posting Requests for Help
version 3.1
GIDForums is pleased to provide these forums to help you understand programming techniques and correct programming problems. Following these guidelines will help you post good questions with enough information that we can understand your...
|
21-Apr-2005 02:44
by WaltP
|
0 |
12,589 |
|
|
by nowocien
how does the cin.get() != '\n' know too look for one character and then check for a new line at the end.. i have also seen this used the same way with numeric data in which case this same expression checks to see if you entered nothing but numbers with not other characters at the end.. accept for...
|
|
4 |
60 |
|
|
by nowocien
in the code below.. what is the other way of calling the overloaded assignment operator? descriped in the commnets below. Also, this function returns a reference "&", this mean the copy constructor is called, correct?
IntlPhoneNumberWS& IntlPhoneNumberWS::operator=(const IntlPhoneNumberWS& s){
...
|
|
2 |
52 |
|
|
by hypernova
I am searching for a book(s) which explains things like the following -
1. Difference between memory allocation of local and global (or other static variables)....? (or why i cant initialize a global variable more than once outside main and all other functions)
2. Holes in structures, and...
|
|
2 |
66 |
|
|
by Anonymous_guy
So this is the first time I've ever done ANYTHING with pthreads what so ever. I have an assignment that deals with them and I'm having quite a bit of trouble at the moment.
http://img.photobucket.com/albums/v233/anonymous__guy/sa/train.jpg
Essentially the program will take in a file such...
|
|
3 |
74 |
|
|
by Seraphis
Hello,
The title pretty much explains what's happening here... When I run the program I just return my own error code of 102; which means the bind on the client portion of the engine has failed.
Files
networkEngine.h
#ifndef NETWORKENGINE_H
#define NETWORKENGINE_H
|
|
3 |
57 |
|
|
by Soundzz
Could anyone help me that how I can get the value of each pixels in a bmp image?
I would like to do image encryption using Chaos in Pelles C, could anyone help me about this topic??
|
|
51 |
9,032 |
|
|
by ajb181
Im having trouble linking my c++ project.
getting 1000's of linker errors like..
../../tools/build/../../release/lib/.//libremovable_media.a(linux_file_struct_element.o): In function...
|
|
2 |
106 |
|
|
by ahbi82
Hi all, currently i am working with openCV. I got a problem with the highGUI module. The cvCreateFileCapture is only able to read in uncompressed 24/32 bits video AVIs.
I would like to create a wrapper class or module that is able to read in any video formats recognized by the installed codecs on...
|
|
0 |
43 |
|
|
by Ivan
I have a template class Vector<T> that is inherited from the std::vector<T>,
but has extended functionality, for example, it has the component-wise
multiplication * of vectors.
I also (separately) have a function
double mean(Vector<double>& v){
...
};
|
|
3 |
94 |
|
|
by ajb181
Currently cant link the function calls to 'backtrace' and 'backtrace_symbols' my project with my cross compiler. worked fine using the standard gcc compiler. Im including the -rdynamic flag as a linker switch but this isnt helping the error. is there any way to see if the compiler supports this...
|
|
0 |
50 |
|
|
by trevormoss
For some reason every time it comes to the line of code:
if (number1 == 0.0 || number2 = 0.0)
it gives me an error: error C2106: '=' : left operand must be l-value
#include <iostream>
|
|
6 |
143 |
|
|
by calvinlyp
hi all,
relatively new to c++.
may i know how do i solve
*** stack smashing detected ***
error?
i am actually runnning some open source software
|
|
1 |
102 |
|
|
by tuxor
Hello, Im very new to C++ and I'm trying to make a simple program and i keep getting this error "error: expected unqualified-id before ‘{’ token" not sure what to do :(
#include <iostream>
using namespace std;
int main();
{
int;
char response;
|
14-Jun-2009 22:15
by tuxor
|
1 |
130 |
|
|
by MarshaBan
I ran across this expression in my textbook and I can't seem to find the answer in it.
In the expression:
for ( ;; )
{
//some iostream statements here
}
What does ;; represent in the For loop?
|
|
2 |
80 |
|
|
by pablowablo
Let's say I have a class called Foo having a constant 2D integer array. And I want to initialize its values in the class definition or constructor... How should I do this? I always get an error when I try initializing it in the declaration or in the constructor
INITIALIZING IN THE...
|
12-Jun-2009 10:56
by L7Sqr
|
14 |
14,228 |
|
|
by Damienquinn
Hi all,
I want to design a piece of software to model the outcomes of chemical reactions based on statistical and thermodynamic information. What programming interface do I need to use to create this? I am a basic pc user with no previous programming experience but I can learn if I am pointed in...
|
|
3 |
65 |
|
|
by calvinlyp
hi all,
i am getting an error when installing a software.
source='zm.cpp' object='zm.o' libtool=no \
depfile='.deps/zm.Po' tmpdepfile='.deps/zm.TPo' \
depmode=gcc3 /bin/bash ../conftools/depcomp \
g++ -DHAVE_CONFIG_H -I. -I. -I.. -Wall -c -o zm.o `test -f 'zm.cpp' || echo './'`zm.cpp
In file...
|
|
7 |
122 |
|
|
by ajb181
Hi. I have been trying to build the object files for a project but they are not been compiled correctly. I had the project compiling correctly with the standard linux gcc compiler but have changed to ST version of it and now am not getting the correct format of object files.
This compiler has...
|
|
3 |
106 |
|
|
by calvinlyp
hi all,
i am relatively new to C++ programming.
i downloaded a program from sourceforge and edited some of its cpp files, i was told that by changing the Makefile i will be able to create a .exe file with the combination of multiple .cpp, .h and .o files.
may i know how to go about changing the...
|
|
1 |
67 |
|
|
by calvinlyp
hi all,
i am relatively new to c++ programming.
would like to ask is it possible to write a program to invoke the hyper terminal?
in the sense the program will allow user to enter phone number(maybe plus some others parameters like data bits,baud rate) before it invoke hyperterminal?
plus can...
|
|
1 |
100 |