access list: symbolic names: keyword substitution: kv total revisions: 1; selected revisions: 1 description: —————————- revision 1.1 locked by: reena; date: 2016/01/14 09:36:22; author: reena; state: Exp; Initial revision ============================================================================= RCS file: prototype.c,v Working file: prototype.c head: 1.1 branch: locks: … Continue reading
/* Insertion sorting is a sorting technique in which every element will be placed at their position in such a way that they will be sorted*/ #include int main () { int n,i,j,k,c; int a[30]; printf(“Enter size of array: \n”); … Continue reading
RCS file: reciever.c,v Working file: reciever.c head: 1.24 branch: locks: strict root: 1.24 access list: symbolic names: keyword substitution: kv total revisions: 24; selected revisions: 24 description: this is a reciever end . it will recieve the data. which will … Continue reading
RCS file: client1.c,v Working file: client1.c head: 1.18 branch: locks: strict root: 1.18 access list: symbolic names: keyword substitution: kv total revisions: 18; selected revisions: 18 description: this is aclient progran which will genrate arequest. rfd and wfd file is … Continue reading
RCS file: header.h,v Working file: header.h head: 1.3 branch: locks: strict root: 1.3 access list: symbolic names: keyword substitution: kv total revisions: 3; selected revisions: 3 description: include stdio.h —————————- revision 1.3 locked by: root; date: 2015/12/23 17:25:37; author: root; … Continue reading
RCS file: adder.c,v Working file: adder.c head: 1.24 branch: locks: strict root: 1.24 access list: symbolic names: keyword substitution: kv total revisions: 24; selected revisions: 24 description: adder.c accepts recieves the request which is send by the server. then calculate … Continue reading
RCS file: adder.c,v Working file: adder.c head: 1.24 branch: locks: strict root: 1.24 access list: symbolic names: keyword substitution: kv total revisions: 24; selected revisions: 24 description: adder.c accepts recieves the request which is send by the server. then calculate … Continue reading
RCS is a Revision Control System. It manages changes in text documents, automating the storage, retrieval, logging, and logging of file revisions. In the image there is a RCS -Tree which have following parts: One Branch : … Continue reading
RCS file: header.h,v Working file: header.h head: 1.3 branch: locks: strict root: 1.3 access list: symbolic names: keyword substitution: kv total revisions: 3; selected revisions: 3 description: include stdio.h revision 1.2 date: 2015/12/23 16:28:04; author: root; state: Exp; lines: +1 … Continue reading
RCS file: header.h,v Working file: header.h head: 1.3 branch: locks: strict root: 1.3 access list: symbolic names: keyword substitution: kv total revisions: 3; selected revisions: 3 description: include stdio.hrevision 1.2 date: 2015/12/23 16:28:04; author: root; state: Exp; lines: +1 -0 … Continue reading
RCS file: header.h,v Working file: header.h head: 1.1 branch: locks: strict root: 1.1 access list: symbolic names: keyword substitution: kv total revisions: 1; selected revisions: 1 description: All the required header files are included here some important are stdio.h unistd.h … Continue reading
RCS file: header.h,v Working file: header.h head: 1.1 branch: locks: strict root: 1.1 access list: symbolic names: keyword substitution: kv total revisions: 1; selected revisions: 1 description: All the required header files are included … Continue reading
RCS file: request.h,v Working file: request.h head: 1.4 branch: locks: strict root: 1.4 access list: symbolic names: keyword substitution: kv total revisions: 4; selected revisions: 4 description: it defines the structure of the request. —————————- revision 1.4 locked by: root; … Continue reading
RCS file: header.h,v Working file: header.h head: 1.1 branch: locks: strict root: 1.1 access list: symbolic names: keyword substitution: kv total revisions: 1; selected revisions: 1 description: All the required header files are included … Continue reading
Hi , Lets discuss about memory allocation techniques we use either in user space program or kernel space program . 1. Malloc :- void *malloc(size_t size); The malloc() function allocates size bytes and returns a pointer to the allocated memory. … Continue reading