Search:

Type: Posts; User: surajkaul

Search: Search took 0.01 seconds.

  1. Also any book recommendations for jumping into...

    Also any book recommendations for jumping into C++ from C & for Data Struct likewise.
  2. Hey thanks everyone. I need some advice with...

    Hey thanks everyone. I need some advice with coding.
    I've just started working with Data Structures using C. Should I do C++ first and then do data struct or do data structure and then C++.
    I'm...
  3. Freeing the dynamic memory allocated in the Linked list

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

    struct node
    {
    int data;
    int data2;
    struct node *link;
Results 1 to 3 of 3