Search:

Type: Posts; User: newbie02

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,467

    It is my understanding that there is a sprintf...

    It is my understanding that there is a sprintf for use in C++ also, but its in stdio.h
    and it has the same function as with C


    here is a site:

    http://www.cplusplus.com/ref/cstdio/sprintf.html
  2. Replies
    3
    Views
    1,709

    question about 32 bit addresses??

    Hi,

    I have a quick question, I am somewhat confused about this...but I keep reading about 32 bit -vs- 64 bit computers.

    Does this mean that for example there are computers for which it can...
  3. ? about char somearray[] and char *somearray[]

    Hi,

    I have a quick question about arrays, I have an array:

    char somearray[]. I understand it keeps a pointer to the first element.

    I have also run across :

    char *somearray[], what...
  4. Replies
    3
    Views
    1,643

    just figured it out--

    thanks anyway....I just figured it out...
  5. Replies
    3
    Views
    1,643

    thanks - another question

    thanks---I have another ?

    between the #ifdef DEBUG and #endif there are cout debugging statements.

    I want to see these statements...

    I ran the program and got a.out, but not sure how to be...
  6. Replies
    3
    Views
    1,643

    DEBUG statements--what are they??

    Hi,

    I have a question about DEBUG statements. I am not sure how they work.

    I keep seeing #ifdef DEBUG

    --some code--

    #endif
  7. Replies
    2
    Views
    1,804

    question about parsing a string??

    Hi,

    I have a problem that I'm trying to figure out. I have the following string:

    something1:something2

    but something1 needs to be stored into some string variable
    and something2 need to...
  8. Replies
    4
    Views
    2,107

    Thanks for your help, I'll try it out. Thanks...

    Thanks for your help, I'll try it out. Thanks again!
  9. Replies
    4
    Views
    2,107

    question about ignore()????

    Hi ,
    I have a question about reading in a file. I have a file that I am reading in that has the format:

    setenv HOST1 somehostname1
    setenv PORT1 someportname1
    setenv HOST2 somehostname2
    setenv...
  10. thanks

    Thank you, it makes much more sense now , thanks a lot!
  11. question about casting pointers/other types also??

    Hi,

    I have been trying to figure out casting, and have a quick question I hope someone can help me with:

    What exactly is the purpose of casting, like for int, char...etc...:
    example:
    ...
  12. Replies
    3
    Views
    1,075

    ? about stubs and skeletons

    Hi,

    I have a quick question concerning what skeletons and stubs are??

    I have looked up the definitions, but still am a little confused.

    My understanding of a stub is just a prototype of a...
  13. Replies
    3
    Views
    1,010

    ? about compilers

    Hi,

    Could someone tell me what the difference b/w g++ and gcc ??

    Are they 2 different compilers?? Thanks for any explanation!
  14. Replies
    1
    Views
    1,370

    question about parser??

    Hi,

    I am still new to C++ and have a quick question:

    what exactly is a parser??

    Thanks for any explanations.
  15. Thread: loops ?

    by newbie02
    Replies
    4
    Views
    972

    loops ?

    Hello,

    I am kinda new to C++ and have a couple of ?s:

    what does for(;;) mean ??

    the usual way I have seen is for (int i =1; i<2, i++) .


    Also, I have encountered the term "stubs",...
Results 1 to 15 of 15