Search:

Type: Posts; User: kyel_dai92

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Thread: Typedef

    by kyel_dai92
    Replies
    21
    Views
    3,487

    I looked and read aobut typedef in the c book...

    I looked and read aobut typedef in the c book aren't this the same? I am just asking a question no need to complex answers, straight questions deserves straight answer .
  2. Thread: Typedef

    by kyel_dai92
    Replies
    21
    Views
    3,487

    but how about my last question? D:

    but how about my last question? D:
  3. Thread: Typedef

    by kyel_dai92
    Replies
    21
    Views
    3,487

    canI request thread closure? I am gonna try to...

    canI request thread closure? I am gonna try to retweak my code but before that


    is typedef StackNode *StackNodePtr the same as struck stackNode *StackNodePtr ??
  4. Thread: Typedef

    by kyel_dai92
    Replies
    21
    Views
    3,487

    wait I think I get typedef StackNode...

    wait I think I get typedef StackNode *StackNodePtr; will be struct stackNode *StackNodePtr ? am I correct?

    I've redone my code now look at the errors I really don't get it with this errors can...
  5. Replies
    6
    Views
    2,372

    I am using a bloodshed C++ btw before i forget...

    I am using a bloodshed C++

    btw before i forget can anyone translate this without typedef?
  6. Replies
    6
    Views
    2,372

    newPtr = malloc(sizeof (StackNode)); this one :|

    newPtr = malloc(sizeof (StackNode)); this one :|
  7. Replies
    6
    Views
    2,372

    invalid conversion What's this?

    I was on a middle on making my code then I encountered this



    #include<stdio.h>
    #include<stdlib.h>
    #include<conio.h>

    struct stackNode
    {
  8. Thread: Typedef

    by kyel_dai92
    Replies
    21
    Views
    3,487

    and what's the solution for typedef StackNode...

    and what's the solution for typedef StackNode *StackNodeptr?
  9. Thread: Typedef

    by kyel_dai92
    Replies
    21
    Views
    3,487

    OMG I am confuse , soo they are not the same?...

    OMG I am confuse , soo they are not the same? well the they have the same concept but , anyways I'll put my whole coede here I guess? just to make it more understandable


    This is the original...
  10. Thread: Typedef

    by kyel_dai92
    Replies
    21
    Views
    3,487

    Typedef

    just a question


    struct stackNode
    {
    int data;
    struct stackNode *nxt
    }
    typedef struct stackNode StackNode;
    typedef StackNode *StackNodePtr;
  11. Replies
    11
    Views
    984

    I am just asking a question if you are not gonna...

    I am just asking a question if you are not gonna say something good don't say it.
  12. Replies
    11
    Views
    984

    can we just stay in topic here for peeps sake , I...

    can we just stay in topic here for peeps sake , I am just asking a question
  13. Replies
    11
    Views
    984

    I just need clarification, I understand it...

    I just need clarification, I understand it already, I just need clarifications though.



    it's a pointer
  14. Replies
    11
    Views
    984

    Question[Urgent]

    void add(struct node **root, int x)
    {
    struct node *conductor;
    if(*root==NULL)
    {
    (*root)=malloc(sizeof(struct node));
    (*root)->value=x;
    ...
  15. Thread: Linked List

    by kyel_dai92
    Replies
    81
    Views
    6,541

    SO i've decided to change my code to pass by...

    SO i've decided to change my code to pass by reference due to my curiosity soo here it is but the problem is it's not working it doesn't print anything again



    #include<stdio.h>...
  16. Thread: Linked List

    by kyel_dai92
    Replies
    81
    Views
    6,541

    sorry :(. can we just stay in topic here?

    sorry :(. can we just stay in topic here?
  17. Thread: Linked List

    by kyel_dai92
    Replies
    81
    Views
    6,541

    if we are wrong, point it out on the code

    if we are wrong, point it out on the code
  18. Thread: Linked List

    by kyel_dai92
    Replies
    81
    Views
    6,541

    quzah, stop posting if you are not going to reply...

    quzah, stop posting if you are not going to reply in a appropriate manner in this thread.
  19. Thread: Linked List

    by kyel_dai92
    Replies
    81
    Views
    6,541

    I didn't make a temporary pointer :|

    I didn't make a temporary pointer :|
  20. Thread: Linked List

    by kyel_dai92
    Replies
    81
    Views
    6,541

    Now the only thing I need to worry about are...

    Now the only thing I need to worry about are removing nodes how do I actually remove a node? do i need to make another function for? it? any suggestions?
  21. Thread: Linked List

    by kyel_dai92
    Replies
    81
    Views
    6,541

    Thank you :) at least someone here is encouraging...

    Thank you :) at least someone here is encouraging me but hey I did :) thanks to everyone who helped me all I have to do is remove the node
  22. Thread: Linked List

    by kyel_dai92
    Replies
    81
    Views
    6,541

    after those constructive crictscism I was finally...

    after those constructive crictscism I was finally able to do it
  23. Thread: Linked List

    by kyel_dai92
    Replies
    81
    Views
    6,541

    Here's my new code, it adds a new node, the only...

    Here's my new code, it adds a new node, the only problem is that how should I add the value of 5 and 3 ?? and the displaying but it looks like everything is going well




    #include<stdio.h>...
  24. Thread: Linked List

    by kyel_dai92
    Replies
    81
    Views
    6,541

    why is that?

    why is that?
  25. wait nevermind what I posted about printing xD. ...

    wait nevermind what I posted about printing xD.

    yes the first node in the whole linked list XD. if you don't mind can you provide me a sample of a program that has 2 nodes and has values in it? so...
Results 1 to 25 of 66
Page 1 of 3 1 2 3