Hai friends im a i year student. i want to develop my
knowledge in the field of TSR in c. How I'm Improve ?
Answers were Sorted based on User's Feedback
Hi,
Terminate and stay resident(TSR)is a old style of
programming concept in c. This is used to have a
multitasking in DOS kind of envirnment and it can be used
to develop .COM application in C language.
TSR can be used to write small kind of application(max
64KB) which can be attached to a main memory of the system
and will be called whenever needed.
If u want to explore more go through with Kanethkar TSR
programming book.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / 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 |
Explain what are run-time errors?
What is the use of extern in c?
What is d'n in c?
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
What does %2f mean in c?
Two's compliment of -5
Tell us two differences between new () and malloc ()?
multiple of 9 without useing +,* oprator
write a program to display numbers from 1 to 10 and 10 to 1?
What is the use of getchar functions?
What are the types of c language?
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");