RCS file: mdc_realloc_main.c,v Working file: mdc_realloc_main.c head: 1.4 branch: locks: strict emblogic: 1.4 access list: symbolic names: keyword substitution: kv total revisions: 4; selected revisions: 4 description: create file created master array using realloc save master array —————————- revision 1.4 … Continue reading
rlog mdc.c RCS file: mdc.c,v Working file: mdc.c head: 1.3 branch: locks: strict root: 1.3 access list: symbolic names: keyword substitution: kv total revisions: 3; selected revisions: 3 description: read the content of file master array ha created code length … Continue reading
I knew the real definition of pointer . it is a variable that stores the logical address not physical address.
Learning C language is very analogous to learn our natural language. As we learn first of all the character set of a natural language, C has also its character set. Word is the meaningful combination of the characters, in C … Continue reading
RCS file: mdc.c,v Working file: mdc.c head: 1.5 branch: locks: strict access list: symbolic names: keyword substitution: kv total revisions: 5; selected revisions: 5 description: Unique Master Array is being created using functions and pointers countred the codelength of the … Continue reading
RCS file: openfile_1.c,v Working file: openfile_1.c head: 1.4 branch: locks: strict eblogic: 1.4 access list: symbolic names: keyword substitution: kv total revisions: 5; selected revisions: 5 description: Unique master array created using malloc code length found using functions. —————————- revision … Continue reading
RCS file: mdc.c,v Working file: mdc.c head: 1.3 branch: locks: strict root: 1.3 access list: symbolic names: keyword substitution: kv total revisions: 3; selected revisions: 3 description: implemented using pointes,but without using functions. —————————- revision 1.3 locked by: root; date: … Continue reading
Learnt to use GDB debugger and source code control commands – RCS. Also we got to know that how to include an externally defined function into the main file
Arrray is containe multiple value with same data type and contain continuous address. E.g.if we consider a[10] then it take 0 to 9 continuous address.
we discuss in class about the multiple data compression project with revision control system & gbd.
Created masterarray and found the code length for the text file.
Mutex is locking mechanism used to synchronize access to a resource. Only one task ( thread or process ) can acquire the mutex. It means there will be ownership associated with mutex, and only the owner can release the lock. … Continue reading
Socket is an end point communication between two systems on a network. Socket is a combination of IP address an port on one system. socket(int domain, int type, int protocol) => creates an unnamed socket inside the kernel and returns … Continue reading