EmbLogic's Blog

Author Archives: Gurbhej Gill

Single Client Server Communication Using Socket In Using UNIX_AF With Use The Shell Script

RCS file: header.h,v Working file: header.h head: 1.1 branch: locks: strict access list: symbolic names: keyword substitution: kv total revisions: 1;     selected revisions: 1 description: In file all header files included this project related . —————————- revision 1.1 date: 2016/02/28 … Continue reading

Posted in Uncategorized | Leave a comment

Single Client Server And Single Thread Communication Using FIFO With Use The Shell Script

RCS file: header.h,v Working file: header.h head: 1.15 branch: locks: strict access list: symbolic names: keyword substitution: kv total revisions: 15;    selected revisions: 15 description: In file all include header files related this project. —————————- revision 1.15 date: 2016/02/25 06:18:43;  … Continue reading

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

SWAP THE THREE VALUES WITHOUT USING FOURTH VARIABLE

#include<stdio.h> int main() { int a=5; int b=6; int c=7; a^=b,b^=a,a^=b; b^=c,c^=b,b^=c; printf(“a= %d\n”,a); printf(“b= %d\n”,b); printf(“c= %d\n”,c); return 0; }

Posted in Uncategorized | Leave a comment

SEVER SINGLE CLIENT FIFO AND PIPES WITH USE THE SHELL SCRIPT

RCS file: header.h,v Working file: header.h head: 1.1 branch: locks: strict access list: symbolic names: keyword substitution: kv total revisions: 1;     selected revisions: 1 description: In file include a all header files realted this project. —————————- revision 1.1 date: 2016/02/04 … Continue reading

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

SEVER MULTIPLE CLIENT USING PIPES WITH USE A SHELL SCRIPT

RCS file: header.h,v Working file: header.h head: 1.2 branch: locks: strict access list: symbolic names: keyword substitution: kv total revisions: 2;     selected revisions: 2 description: In file a include a header files related the this project —————————- revision 1.2 date: … Continue reading

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