Category Archives for C Programming

Programs in C Language

Circular Linked list in C with Append and display options

This is simpler version of Circular linked list program. If you need more options, please check another program http://thecodecracker.com/c-programming/circular-linked-list/.

20. February 2012 by divya
Categories: Data Structures | Leave a comment

Linked List Implementation in C with many options

This program include Singly Linked List implementation in C with options such as insert at beginning, any position, delete at given position, reverse the contents, search the given content, display, append the contents.

23. December 2011 by divya
Categories: C Programming, Data Structures | Tags: | Leave a comment

Readers Writers Problem

Readers writers problem is a classic example of synchronisation problem like dining philosophers problem and producer consumer problem.

30. September 2010 by Jishnu
Categories: C Programming, System Programming | Leave a comment

Dining Philosophers Problem

Dining philosophers problem is a classic multiprocess synchronisation problem. Problem is summarised as 5 philosophers sitting at a round table doing 2 things, eating and thinking. While eating they are not thinking and while thinking they are not eating. Each … Continue reading

29. September 2010 by Jishnu
Categories: C Programming, System Programming | Tags: , | 4 comments

Listing directory details

OUTPUT ————– a.out bank.c pi.c ls.c copy_file.c pipe.c . ..

26. September 2010 by Jishnu
Categories: C Programming, System Programming | Tags: , , | Leave a comment

Message passing through pipe

OUTPUT ————– Parent Process ————– Enter the message to child process : hello ————- Child process ————- Message from parent : “hello” Message to patent process : hai ————– Parent Process ————– Message from child : “hai”

26. September 2010 by Jishnu
Categories: C Programming, System Programming | 1 comment

C Program for Bubble Sort

20. June 2010 by Jishnu
Categories: C Programming, Sorting | 3 comments

C Program for Calculation Sort

20. June 2010 by Jishnu
Categories: C Programming, Sorting | Leave a comment

C Program of Double Linked List

19. June 2010 by Jishnu
Categories: C Programming, Data Structures | Tags: | 12 comments

C Program for Circular Linked List

19. June 2010 by Jishnu
Categories: C Programming, Data Structures | Tags: | 7 comments

← Older posts