Search:

Type: Posts; User: ali1

Search: Search took 0.00 seconds.

  1. Replies
    8
    Views
    1,586

    I'm using Dev-C++ 4.9.8.0,and this is the code: ...

    I'm using Dev-C++ 4.9.8.0,and this is the code:


    #include <iostream>
    #include <string.h>

    int main()
    {
    char string[100];
    std::cout<<"Type a string:";
  2. Replies
    8
    Views
    1,586

    Thanks.I'll just have a look at the FAQs.

    Thanks.I'll just have a look at the FAQs.
  3. Replies
    6
    Views
    1,259

    aah... i got it.An alternative to: for x=1...

    aah... i got it.An alternative to:


    for x=1 to 10 step 2

    would be:


    for (int x=0;x<=10;x+2);
  4. Replies
    6
    Views
    1,259

    stepping through a for loop

    In VB we can use a step statement during a for next loop to step between the counter.My question is,is there any alternative to that in C++?
  5. Replies
    8
    Views
    1,586

    some questions about strings

    Hi everybody.
    I'm moving from VB to C++,and i find this language totally awesome except some concepts that are really confusing.I've pretty much got an idea of everything else except using...
  6. Replies
    8
    Views
    1,235

    wow..i actually did it.I hope no one minds me...

    wow..i actually did it.I hope no one minds me posting my code here :D



    #include <iostream>
    void star(int x);
    int main()
    {
    int x;
    for (x=0;x<10;x++)
  7. Replies
    10
    Views
    2,720

    pointers are confusing!

    Hi everybody.
    I'm new to coding C.I can already code in VB and ASM,but after spending a lot of time coding in VB its really hard for me to learn to code in C.Especially pointers are really...
Results 1 to 7 of 7