EmbLogic's Blog

Author Archives: deepak.kansal

Memory management unit

Allocate available memory efficiently to multiple processes Main functions Allocate memory to processes when needed Protect one process’s memory from another Keep track of what memory is used and what is free. Memory Allocation Contiguous Allocation:Each process allocated a single … Continue reading

Posted in Uncategorized | Leave a comment

character driver

We develop a character driver because this class is suitable for most simple hardware devices. Char drivers are also easier to understand than block drivers or network drivers.we present code fragments extracted from a real device driver: scull (Simple Character … Continue reading

Posted in Uncategorized | Leave a comment

question regarding to c???

int main() { int b; char a; a=&b; printf(“%p”,a); } output=? and why so???

Posted in Uncategorized | Tagged | Leave a comment

article on c

PROJECT01(C-PROGRAMMING BASED PROJECT) Project01-c based programming language,basically to articulate concepts regarding “C Programming”.It is basically a middle level language.Being an electronics engineer,it is one of the basic and important language as far as my career is concerned.It mainly comprises the … Continue reading

Posted in Uncategorized | Leave a comment