EmbLogic's Blog

Author Archives: bidlan.sourav91

Sigaction

The sigaction system call is used to change the action taken by process on receipt of a specific signal….It is used in program as: sigaction(int,struct sigaction *new,struct sigaction *old); Various macros used for sigaction are: sigismember sigaddset sigdelset sigemptyset sigfillset … Continue reading

Posted in Project 03: Client Server Communication using Linux and IPC, Uncategorized | Leave a comment

Difference b/w character array and string array

At the end, string array return a null character but in case of character array it will not happen

Posted in Uncategorized | Leave a comment

linklist

In computer science, a linked list is a data structure consisting of a group of nodes which together represent a sequence. Under the simplest form, each node is composed of a datum and a reference (in other words, a link) … Continue reading

Posted in Uncategorized | Leave a comment