Skip to content

Instantly share code, notes, and snippets.

View Prabudh's full-sized avatar

Prabudh Prabudh

  • Nokia
  • Mountain View CA
View GitHub Profile
@Prabudh
Prabudh / linkedList.c
Created October 26, 2012 03:55
Basic Linked list with opertion like Add, Delete , Display , Search
#include <stdio.h>
#typedef int integer
#typedef char *string
struct studentData {
integer rollNumber;
string name;
student *link;
};
main()
{