Search:

Type: Posts; User: yuki

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    1,311

    how to reversed a line of text using stack??

    #include <stdio.h>
    #include <stdlib.h>
    #include <stack>
    #define MAXSTACK 50

    struct StackRec
    {
    int top;
    char entry[MAXSTACK];
    };
  2. Replies
    10
    Views
    3,997

    don't have syntax error, but the output is not...

    don't have syntax error, but the output is not what i want......
  3. Replies
    10
    Views
    3,997

    can u help me see what's wrong i had make??

    can u help me see what's wrong i had make??
  4. Replies
    10
    Views
    3,997

    #include #include #include...

    #include <stdio.h>
    #include <stdlib.h>
    #include <stack>
    #define MAXSTACK 50

    struct StackRec
    {
    int top;
    char entry[MAXSTACK];
    };
  5. Replies
    10
    Views
    3,997

    reversed a line of text using stack??

    how to reversed a line of text using stack??
Results 1 to 5 of 5