Search:

Type: Posts; User: ghost007

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    928

    Basic Recursion Problem

    I have a problem using the recursion.
    what is the difference between these 2 codes?



    void test(int i)
    {
    if(i==5) return;
    test(i+1);
    cout<<"print\n";//why this part is...
  2. Replies
    9
    Views
    1,265

    ive watched a lot of things regarding the...

    ive watched a lot of things regarding the debugging.i can debug.in C i can see all values of a string as an array.
    But in C++ string i cant do it.
    please if you know give me a hint on how to do...
  3. Replies
    9
    Views
    1,265

    I mean is there a way to view the elements of the...

    I mean is there a way to view the elements of the string or vector in CODEBLOCKS???
  4. Replies
    9
    Views
    1,265

    ok i dont understand what std::string...

    ok i dont understand what std::string means.sorry.
    but when i open the watch window;
    under s1 string(as ive declared before)
    it shows
    static npos=4292967295;
    M_dataplus(you can expand it)
    it...
  5. Replies
    1
    Views
    987

    Help with debugging in CODEBLOCKS

    i am trying to see separate values of a string in C++ while i debug.
    IN C i was able to do it but in C++ i failed.
    it doesnt show values seperately,
    I know basic debugging.
    Using Codeblocks
    ...
  6. Replies
    9
    Views
    1,265

    I am using Codeblocks

    I am using Codeblocks
  7. Replies
    9
    Views
    1,265

    Help with debugging

    i am trying to see separate values of a string in C++ while i debug.
    IN C i was able to do it but in C++ i failed.
    it doesnt show values seperately,
    I know basic debugging.

    suppose,

    i...
  8. Replies
    11
    Views
    1,253

    and the program doesnt work.thanks for pointing...

    and the program doesnt work.thanks for pointing out the mistake
  9. Replies
    11
    Views
    1,253

    guys i just have problem that why isnt the...

    guys i just have problem that why isnt the program displaying all results???using codeblock
  10. Replies
    11
    Views
    1,253

    Help with a program.thanks in advance.

    #include<stdio.h>

    int main()
    {
    int x,y;
    for(y=1;y<=1000;y=y+1){
    x=y;
    if(x==1 || x==2 || x==3 || x==5 || x==7 || x==11)
    {printf("\nprime%d",x);}
  11. yeah tried that.actually didnt understand it.TOO...

    yeah tried that.actually didnt understand it.TOO complex for my tiny brain.:D

    can you tell me something that is simpler(i mean very simple).with simple problems.an example maybe.how it works and...
  12. Hello guys.need some help.thanks very much in advance.

    i am a newbie.i use codeblocks 10.05 in 32bit Windows 7 ultimate.

    i DONT know anything about debugging.how to do it with codeblocks.And how can i identify bugs with it???????


    I would really...
  13. yes i did.those work fine.

    yes i did.those work fine.
  14. im using the software codeblock.im on windows.no...

    im using the software codeblock.im on windows.no the screen does not flickr.it just says thatprocess returned 1. just like that.thanks
  15. i dont know.i cant debug.Sorry.thanks for reading...

    i dont know.i cant debug.Sorry.thanks for reading

    can u do that for me???
  16. Hello guys.im a newbie.need some help with a program.thanks in advance.

    (using codeblocks)


    #include<stdio.h>


    main()
    {
    int x,y,z;
    for(x=1 ;x<=3 && x!=y; x++)
Results 1 to 16 of 16