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 |
How does C++ help with the tradeoff of safety vs. usability?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
While(1) { } when this loop get terminate is it a infinite loop?
What are the 4 types of organizational structures?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What is p in text message?
What is the role of this pointer?
When should structures be passed by values or by references?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What is ## preprocessor operator in c?
how can i get output the following... 5 4 3 2 1 4 3 2 1 3 2 1 2 1 1 and 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 plz plz...