a beginer need help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hamed steph
    New Member
    • Aug 2007
    • 1

    a beginer need help

    i'm a beginer in programing and i need very much your help .i need explanation about while statement (loop initialization and structure of while ) also qualifier (long,short,uns igned ,signed,) type of variable (character and double).
    think you.......
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Originally posted by hamed steph
    i'm a beginer in programing and i need very much your help .i need explanation about while statement (loop initialization and structure of while ) also qualifier (long,short,uns igned ,signed,) type of variable (character and double).
    think you.......
    Welcome to TSDN,

    you're asking quite a bit of questions here with little coherence. What exactly
    do you want to know about a while loop? It goes something like this:

    [code=cpp]
    while(dont_unde rstand(subject) )
    study(subject);
    [/code]

    About all those primitive types: char, int, double etc. I'm very sure that a text
    book on your table somewhere can answer these questions for you; all it takes
    is a bit of reading.

    kind regards,

    Jos

    Comment

    Working...