Search:

Type: Posts; User: yuki

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,316

    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
    4,011

    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
    4,011

    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
    4,011

    #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
    4,011

    reversed a line of text using stack??

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