EmbLogic's Blog

Category Archives: Uncategorized

MDCEIT

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

Posted in Uncategorized | Leave a comment

LOG FILE OF MDC AT CREATE THE COMPREES FILE

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

Posted in Uncategorized | Leave a comment

POINTER

I knew the real definition of pointer . it is a variable that stores the logical address not physical address.

Posted in Uncategorized | Leave a comment

C and natural languages

 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

Posted in Uncategorized | Leave a comment

RCS Log File

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

Posted in Project 2: Multiple Data Compression and Encryption, Uncategorized | Leave a comment

Mdceit project with RCS and multiple file declaration

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

Posted in Uncategorized | Leave a comment

MDC project work

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

Posted in Uncategorized | Leave a comment

MDC Project

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

Posted in Project 2: Multiple Data Compression and Encryption, Uncategorized | Leave a comment

pointer

difference b\w *a[5]&*(a[5])?    

Posted in Uncategorized | Leave a comment

pointer

I am enjoying  to attempt my pointer assignment.

Posted in Uncategorized | Leave a comment

Array

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.

Posted in Uncategorized | Leave a comment

mdc project

we discuss in class about the  multiple data compression  project with revision control  system & gbd.

Posted in Uncategorized | Leave a comment

MDCAEUIT

Created masterarray and found the code length for the text file.

Posted in Uncategorized | Leave a comment

Semaphore Vs Mutex

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

Posted in Uncategorized | Leave a comment

Socket

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

Posted in Uncategorized | Leave a comment