Click here to Skip to main content
15,906,766 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: My C++ app forks itself! (win32/64) Pin
Moak17-Jan-10 2:54
Moak17-Jan-10 2:54 
Questionequivalent of atoi and itoa functions in SDK Pin
samira forooghi16-Jan-10 20:41
samira forooghi16-Jan-10 20:41 
AnswerRe: equivalent of atoi and itoa functions in SDK Pin
Richard MacCutchan16-Jan-10 21:47
mveRichard MacCutchan16-Jan-10 21:47 
GeneralRe: equivalent of atoi and itoa functions in SDK Pin
samira forooghi16-Jan-10 22:50
samira forooghi16-Jan-10 22:50 
GeneralRe: equivalent of atoi and itoa functions in SDK Pin
enhzflep17-Jan-10 11:33
enhzflep17-Jan-10 11:33 
GeneralRe: equivalent of atoi and itoa functions in SDK [modified] Pin
samira forooghi18-Jan-10 0:17
samira forooghi18-Jan-10 0:17 
GeneralRe: equivalent of atoi and itoa functions in SDK Pin
Stuart Dootson18-Jan-10 0:37
professionalStuart Dootson18-Jan-10 0:37 
GeneralRe: equivalent of atoi and itoa functions in SDK Pin
samira forooghi18-Jan-10 0:53
samira forooghi18-Jan-10 0:53 
QuestionSending class object on serial port (communication port) Pin
AnayKulkarni16-Jan-10 20:10
AnayKulkarni16-Jan-10 20:10 
AnswerRe: Sending class object on serial port (communication port) Pin
Richard MacCutchan16-Jan-10 21:49
mveRichard MacCutchan16-Jan-10 21:49 
AnswerRe: Sending class object on serial port (communication port) Pin
Cedric Moonen16-Jan-10 21:56
Cedric Moonen16-Jan-10 21:56 
AnswerRe: Sending class object on serial port (communication port) Pin
CPallini16-Jan-10 22:19
mveCPallini16-Jan-10 22:19 
QuestionInitCommonControlsEx problem Pin
AnayKulkarni16-Jan-10 19:43
AnayKulkarni16-Jan-10 19:43 
AnswerRe: InitCommonControlsEx problem Pin
JudyL_MD17-Jan-10 3:23
JudyL_MD17-Jan-10 3:23 
QuestionModeling the human heart (EKG) Pin
user_void16-Jan-10 16:18
user_void16-Jan-10 16:18 
AnswerRe: Modeling the human heart (EKG) Pin
Tim Craig16-Jan-10 21:02
Tim Craig16-Jan-10 21:02 
GeneralRe: Modeling the human heart (EKG) Pin
user_void17-Jan-10 5:55
user_void17-Jan-10 5:55 
GeneralRe: Modeling the human heart (EKG) Pin
Bram van Kampen17-Jan-10 6:09
Bram van Kampen17-Jan-10 6:09 
GeneralRe: Modeling the human heart (EKG) Pin
Tim Craig17-Jan-10 14:04
Tim Craig17-Jan-10 14:04 
GeneralRe: Modeling the human heart (EKG) Pin
user_void17-Jan-10 14:23
user_void17-Jan-10 14:23 
GeneralRe: Modeling the human heart (EKG) Pin
Tim Craig17-Jan-10 17:21
Tim Craig17-Jan-10 17:21 
GeneralRe: Modeling the human heart (EKG) Pin
user_void18-Jan-10 8:46
user_void18-Jan-10 8:46 
GeneralRe: Modeling the human heart (EKG) Pin
Tim Craig18-Jan-10 9:16
Tim Craig18-Jan-10 9:16 
Questionheader file Pin
khomeyni16-Jan-10 9:15
khomeyni16-Jan-10 9:15 
hello everybody
when i include a header file with space between words of its name then my compiler cannot link them and take error:
[sajad@sajad binary search trees]$ g++ binary\ trees.cpp
binary trees.cpp:3:73: error: /home/sajad/src/ds/test/binary\ search\ trees/BST_node_base.h: No such file or directory
binary trees.cpp:4:63: error: /home/sajad/src/ds/test/binary\ search\ trees/BST.h: No such file or direct



while the directory and address is completely true.

#include<iostream>
#include "/home/sajad/src/ds/test/binary\ search\ trees/BST_node_base.h"
#include "/home/sajad/src/ds/test/binary\ search\ trees/BST.h"

but when i change the name ,without space between it then it run correct,what can i do to solve this error?

also when i include a fileheader and in it use for example cout<<"hello"<<endl; takes="" error,but="" when="" i="" include<iostream=""> using namespace std it work true.does it must be as i write or there is another way to solve this?


this is the part of header file:

#include<iostream>
using namespace std;
template <class T>class BS_Tree{
public:
bool direction;
int n;
BST_node<T>* root;
BS_Tree(){
root=NULL;
}
....
AnswerRe: header file Pin
Chris Losinger16-Jan-10 9:47
professionalChris Losinger16-Jan-10 9:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.