In message queue if i use pointer for sending payload instead of character array then unpredictable output occurs . Sometimes segmentation fault or sometimes unwanted output occurs at the receiver side . When i use character array instead of pointer … Continue reading
The same project of IPC which we have done with pipes have to do with FIFO also. All the E-10 members update their status and all the issues regarding project on this thread only . Regards Harsimran singh
Kindly all the E-10 batch members update their status regarding mdc project here again .
Project description Implement the client server application using pipes by inter-process communication server has to generate clients and clients will communicate with server through pipes . Clients will send their parameters and server will accept it and depending upon the … Continue reading
how to use execle and execvpe functions and how can i change the value of environment variables using envp[]
compression and decompression done (1 to 7 bit)
general compression (1 to 7 bit) done working on decompression.
fileio assignment done. structure assignment about to be completed
sometimes when i create .c file then .c.swp file is also generated . For ex i create test.c then hidden file .test.c.swp is generated .Can anyone explain about this swap file ????
assignment 5(pointer) till q-14 done but there are some issues in cvs…….
what are the two types of files used by the shells to initialise itself???
//just go thru the simple prog #include #include int main() { char str[5]; int i; for(i=0;i<5;i++) { printf("\n enter the character :"); scanf("%c",str+i); } printf("\n %s\n ", str); return 0; } predict what is the output if u think output … Continue reading
what is the function of cat and wc command in linux ???? how can we return from wc and cat command