Hai friends im a i year student. i want to develop my
knowledge in the field of TSR in c. How I'm Improve ?

Answer Posted / suman halder

i would like 2 suggest 2 books..

1) The "c" odyssey by vijay mukhi

2) Writing TSR through C -kanetkar

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What 'lex' does?

819


What is the difference between malloc() and calloc()?

715


Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?

778


What are the back slash character constants or escape sequence charactersavailable in c?

791


Can a pointer point to null?

688






Explain how can you be sure that a program follows the ansi c standard?

959


#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }

805


Write a program to generate the Fibinocci Series

759


How do c compilers work?

701


Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?

2273


Why does this code crash?

704


struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

858


What is sizeof array in c?

672


Is it fine to write void main () or main () in c?

630


What is the modulus operator?

822