Search:

Type: Posts; User: matheo917

Page 1 of 12 1 2 3 4

Search: Search took 0.02 seconds; generated 3 minute(s) ago.

  1. Replies
    7
    Views
    1,507

    editing a string...

    hi all..........one question

    having declared a string like:




    #include<string>
    using namespace std;
  2. Replies
    3
    Views
    1,174

    yep.......thanx all..........my eyes must be...

    yep.......thanx all..........my eyes must be tired.....that's a sign that I must rest now....


    Regards,
    .......................
    matheo917
  3. Replies
    3
    Views
    1,174

    external link error...?

    Hi all....

    To make the long story short I have the following function declaration in my program:




    bool examine_string(int array[][ASCII_INDEX], char string[], int accepting_states[], int...
  4. Replies
    2
    Views
    2,859

    Thanx for the reply..........that's exactly what...

    Thanx for the reply..........that's exactly what I intend to do
  5. Replies
    2
    Views
    1,439

    I'm not sure if it makes much difference (in this...

    I'm not sure if it makes much difference (in this case) but you might want to save it as a (.c) file, rather than the (.cpp) file
  6. Replies
    2
    Views
    2,859

    practice exercises???

    Hi all, I've recently made a transition to WIN32 API, that is I started studying Charles Petzold's "Programming Windows", so far I must say it's a great book, considering that I have studied many...
  7. Replies
    5
    Views
    1,434

    thanx for replies and don't worry it's not that...

    thanx for replies and don't worry it's not that easy to insult my intelligence....

    anyway, putting your example in my Microsoft Visual .NET and working a bit with the MSDN library and its...
  8. Replies
    5
    Views
    1,434

    what do you mean by "static storage duration"???

    what do you mean by "static storage duration"???
  9. Replies
    5
    Views
    1,434

    newbie question on App Name

    Hi, all I just picked up Charles Petzold's Programming Windows book and I'm slowly studying it --- so far it seems to be a great book, but anyway...

    In the third chapter I have a simple (sample)...
  10. Replies
    8
    Views
    2,005

    nice......... thanks for help it seems to work...

    nice.........

    thanks for help it seems to work properly now...

    interesting how the "this" pointer gets used here,

    i must read up on the uses of (->*) operator and study a bit your line of...
  11. Replies
    8
    Views
    2,005

    i see................ but what about if (in...

    i see................

    but what about if (in your example) speak() function needs to take a Function_Type (pointer to a function) as a parameter???

    in other words, what i mean is: since (in my...
  12. Replies
    8
    Views
    2,005

    thank you for the reply... you see, actually i...

    thank you for the reply...

    you see, actually i think i'm supposed to use an "address operator" when i call the "traverse" function, i.e:




    traverse(&display);
  13. Replies
    8
    Views
    2,005

    function pointers...

    Hi all, i have a certain certain command code that seems ambigues to me and I'm forced to use it. Can anyone explain the meaning of this particular line of code: ???




    typedef void...
  14. Replies
    16
    Views
    2,294

    to respond to Jamsan's post: that's one way of...

    to respond to Jamsan's post:

    that's one way of going about learning to program in "Windowed Environmnet" however you don't really learn the inner workings with just MFC as you would if you...
  15. Replies
    16
    Views
    2,294

    i would recommand getting (at first) a different...

    i would recommand getting (at first) a different compiler, for instance Microsoft Visual C++ (.NET or 6.0) but that's not a necessity...

    anyway, ideally it would be best to fairly efficient with...
  16. Replies
    16
    Views
    2,294

    I must definately recommand the book by Charles...

    I must definately recommand the book by Charles Petzold "Programming Windows" and I'm sure a lot of people would as well ---> Petzold is the man and he knows how to pass on info about Win API
  17. oh yeah,,,,,,,,,, and if it does exist then it...

    oh yeah,,,,,,,,,, and if it does exist then it will get opened so you must close it after, that is if you don't intend on using it






    fin.close();
  18. #include // include on top of program...

    #include<fstream.h> // include on top of program


    ifstream fin("C:\\ONEDIR\\SECOND\\FILE.TXT");

    if(fin.fail())
    cout << "Can't open the file or it doesn't exist!";
  19. Replies
    5
    Views
    1,436

    glad i was able to help keep up the good work...

    glad i was able to help

    keep up the good work

    .......................
    matheo917
  20. Replies
    5
    Views
    1,436

    ... bit ambigous but let's see if can make...

    ... bit ambigous but let's see if can make anything out of it

    at first you write:



    that (;) semicolon is not really helping you, b/c it will loop and will never let you get to (cnode->next =...
  21. Replies
    5
    Views
    1,313

    if pName is a pointer you can for instance do 2...

    if pName is a pointer you can for instance do 2 things:

    first, if pName has already been declared before somewhere in the code, you can do the following:




    if(pName == NULL)
    ...
  22. Replies
    15
    Views
    2,732

    what are the errors that your compiler is...

    what are the errors that your compiler is flaggin??
  23. Replies
    3
    Views
    2,842

    Thank you very much, it works properly now. ...

    Thank you very much, it works properly now.


    ps. I see now why I was frequently getting name clashes with STL when i was including my files the way i always was...

    ........................
  24. Replies
    3
    Views
    2,842

    placement of (.h) and (.cpp) files..!?

    This has been on my mind for a while and finally it caught up to me by not working ....meaning:

    Can anyone explain and provide a best way of placing and especiall a way of including (.h) and...
  25. most likely.................... in reality...

    most likely....................

    in reality when you utilize a (string) data type, that is defined in a <string> library, that string will have \0 as its last character
Results 1 to 25 of 279
Page 1 of 12 1 2 3 4