Search:

Type: Posts; User: XrossHAIR

Search: Search took 0.01 seconds.

  1. Replies
    15
    Views
    13,904

    Finally Got it Bro...@hamster_nz. I am really...

    Finally Got it Bro...@hamster_nz. I am really Thankful to you. I figured it out with you help and got rid of my mistakes.:) -XrossHAIR
  2. Replies
    15
    Views
    13,904

    Because I don't know how to end the take()...

    Because I don't know how to end the take() without using it(ZERO).

    EDIT: should I free the last one(ZERO) and put previous pointer to null?
  3. Replies
    15
    Views
    13,904

    Here, I changed it.. @hamster_nz #include...

    Here, I changed it.. @hamster_nz


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


    typedef struct con {
    int num;
    struct con *next;
  4. Replies
    15
    Views
    13,904

    Sorry to ask this again, but I am not getting it....

    Sorry to ask this again, but I am not getting it. I am unable to figure out what is wrong.. I am following a book: advanced topics in c by noel kalicharan. If I just let this go, then I will not...
  5. Replies
    15
    Views
    13,904

    I want to know what is wrong in the above code.....

    I want to know what is wrong in the above code.. bro
  6. Replies
    15
    Views
    13,904

    I want to know what is wrong in the above code.....

    I want to know what is wrong in the above code.. bro;)
  7. Replies
    15
    Views
    13,904

    Error in my Code(Deletion(Linked Lists))

    The Number is not deleting(Pls.Help)


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


    typedef struct con {
    int num;
    struct con *next;
  8. Replies
    7
    Views
    3,116

    I finally got it... Thanks Everyone...XrossHAIR

    I finally got it... Thanks Everyone...XrossHAIR
  9. Replies
    7
    Views
    3,116

    I tried this...Yet i Failed..XrossHair ...

    I tried this...Yet i Failed..XrossHair


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


    int removedups(char str[100][100],int num)
    {
  10. Replies
    7
    Views
    3,116

    I still didn't get how to delete duplicate...

    I still didn't get how to delete duplicate entries... I am a Beginner..
    XrossHAIR
  11. Replies
    6
    Views
    2,081

    Thanks pal.. I got it now.. Xrosshair

    Thanks pal.. I got it now..
    Xrosshair
  12. Replies
    7
    Views
    3,116

    Find Error in my Code(Sorting Strings)

    I want to stop repetition and print a word only once..


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


    int main()
    {
  13. Replies
    6
    Views
    2,081

    void swap(int a,int b) { int x=a; a =...

    void swap(int a,int b)
    {
    int x=a;
    a = b;
    b = x;
    }

    I did'nt get it my Friend(@stahta01). Actually I am a Newbie, Could you give me a much more clear expalnation.. With regards...
  14. Replies
    6
    Views
    2,081

    Find Error in my Code(Ascending Order)

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


    void swap(int a,int b)
    {
    int x=a;
    a = b;
    b = x;
Results 1 to 14 of 14