Showing posts with label cs or is programs. Show all posts
Showing posts with label cs or is programs. Show all posts

Tuesday, December 28, 2010

C program for SINGLY LINKED LIST consisting of following information::student id,student name and semester.



#include
#include

struct student
{
    int usn;
    char name[25];
    int sem;
};
typedef struct student  s;