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 |
could u able to tell about suresoft technical session
What is the meaning of 2d in c?
What tq means in chat?
What is time null in c?
write a c program in such a way that if we enter the today date the output should be next day's date.
How are pointers declared in c?
write a program to compare 2 numbers without using logical operators?
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
What is a pointer variable in c language?
How can I write functions that take a variable number of arguments?
I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....
How to add two numbers with using function?