Click here to Skip to main content
15,918,668 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: problem reading file in C++ newbie here ;) Pin
David Crow4-Jun-07 5:38
David Crow4-Jun-07 5:38 
GeneralRe: problem reading file in C++ newbie here ;) Pin
GatoFedorento474-Jun-07 5:46
GatoFedorento474-Jun-07 5:46 
GeneralRe: problem reading file in C++ newbie here ;) Pin
David Crow4-Jun-07 5:49
David Crow4-Jun-07 5:49 
AnswerRe: problem reading file in C++ newbie here ;) Pin
David Crow3-Jun-07 16:44
David Crow3-Jun-07 16:44 
GeneralRe: problem reading file in C++ newbie here ;) Pin
GatoFedorento473-Jun-07 19:47
GatoFedorento473-Jun-07 19:47 
GeneralRe: problem reading file in C++ newbie here ;) Pin
David Crow4-Jun-07 2:42
David Crow4-Jun-07 2:42 
GeneralRe: problem reading file in C++ newbie here ;) Pin
GatoFedorento474-Jun-07 6:01
GatoFedorento474-Jun-07 6:01 
GeneralRe: problem reading file in C++ newbie here ;) Pin
David Crow4-Jun-07 6:37
David Crow4-Jun-07 6:37 
GatoFedorento47 wrote:
i believe the function cant get access to the file in question because if i put the return after this piece of code it gives me something completely different from 47


So what you are saying is that you have this:

int escolha_cod(double saldo,int escolha)
{
    FILE *codigo;
    int i=0,linha=0,j=0,aux=0;
    char vec[2];
    using namespace std;
 
    string line;
    ifstream myfile ("codigo.txt");
 
    if (myfile.is_open())
        return 47; 
 
    {
        for(i=0;i<10;i++)
        { 
            getline(myfile,line);
 
            const char *c_line;
            strncpy(vec,line.c_str(),3);
 
            aux=atoi(&vec[0]);
 
            if(aux==escolha)
            {
                linha=i;
                i=10;
            }
        }
 
        myfile.close();
    }
     
    return 47;
}
Is that right?


"A good athlete is the result of a good and worthy opponent." - David Crow

"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne


GeneralRe: problem reading file in C++ newbie here ;) Pin
GatoFedorento474-Jun-07 6:48
GatoFedorento474-Jun-07 6:48 
QuestionRe: problem reading file in C++ newbie here ;) Pin
David Crow4-Jun-07 6:58
David Crow4-Jun-07 6:58 
AnswerRe: problem reading file in C++ newbie here ;) Pin
GatoFedorento474-Jun-07 7:20
GatoFedorento474-Jun-07 7:20 
GeneralRe: problem reading file in C++ newbie here ;) Pin
David Crow4-Jun-07 7:24
David Crow4-Jun-07 7:24 
GeneralRe: problem reading file in C++ newbie here ;) Pin
GatoFedorento474-Jun-07 7:27
GatoFedorento474-Jun-07 7:27 
GeneralRe: problem reading file in C++ newbie here ;) Pin
David Crow4-Jun-07 7:32
David Crow4-Jun-07 7:32 
GeneralRe: problem reading file in C++ newbie here ;) Pin
GatoFedorento4713-Jun-07 7:33
GatoFedorento4713-Jun-07 7:33 
GeneralRe: problem reading file in C++ newbie here ;) Pin
David Crow13-Jun-07 7:44
David Crow13-Jun-07 7:44 
GeneralRe: problem reading file in C++ newbie here ;) Pin
GatoFedorento4713-Jun-07 7:48
GatoFedorento4713-Jun-07 7:48 
QuestionRe: problem reading file in C++ newbie here ;) Pin
David Crow13-Jun-07 7:29
David Crow13-Jun-07 7:29 
Questionwhat is the secret of stepping through an stepping over MFC application ? Pin
Software_Specialist3-Jun-07 10:43
Software_Specialist3-Jun-07 10:43 
AnswerRe: what is the secret of stepping through an stepping over MFC application ? Pin
Christian Graus3-Jun-07 11:20
protectorChristian Graus3-Jun-07 11:20 
QuestionHow to populate a CBitmap correctly Pin
C. Tam3-Jun-07 9:46
C. Tam3-Jun-07 9:46 
AnswerRe: How to populate a CBitmap correctly Pin
Naveen3-Jun-07 16:01
Naveen3-Jun-07 16:01 
GeneralRe: How to populate a CBitmap correctly Pin
C. Tam3-Jun-07 18:29
C. Tam3-Jun-07 18:29 
GeneralRe: How to populate a CBitmap correctly Pin
Naveen3-Jun-07 18:34
Naveen3-Jun-07 18:34 
GeneralRe: How to populate a CBitmap correctly Pin
C. Tam3-Jun-07 21:02
C. Tam3-Jun-07 21:02 

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.