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
What 'lex' does?
What is the difference between malloc() and calloc()?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
What are the back slash character constants or escape sequence charactersavailable in c?
Can a pointer point to null?
Explain how can you be sure that a program follows the ansi c standard?
#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); }
Write a program to generate the Fibinocci Series
How do c compilers work?
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?
Why does this code crash?
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
What is sizeof array in c?
Is it fine to write void main () or main () in c?
What is the modulus operator?