Partial Class

 Partial Class In this article I will explain what is a partial class? What are the benefits of using partial classes and how to implement partial classes in your C# applications. Partial class is a new feature added to C# 2.0 and Visual Read more

Linked List In C

LINKED LIST In C   #include<stdio.h> #include<conio.h> #include”stk.c”   typedef struct nodetype { int info; struct nodetype *next; }node;   void create(node **); void insert_beg(node **,int); void insert_end(node **,int); void insert_after(node *,int,int); void delete_beg(node **); void delete_end(node **); void delete_after(node Read more