Monday, October 24, 2011

link list creation

A link list is a way to represent data so that each element points to next element. steps to create a link list. 1.create a structure : struct linkl { char name[20]; int number; linkl *next; }; two data members name and number are created and a self referential pointer next is created.

No comments:

Post a Comment

System Design : Live Streaming and Video On Demand

  1. Problem Statement Design an  AWS-based live and VOD-to-live HDR streaming platform  that can ingest real-time broadcast feeds as well a...