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 |
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
How can I swap two values without using a temporary?
what is the output of below int n=10; (n++)++; printf("%d",n);
What is mean by data types in c?
which header file contains main() function in c?
17 Answers Google, HCL, TCS,
Are negative numbers true in c?
What is meant by global static? why we have to use static variable instead of Global variable
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma
16 Answers Accenture, Infosys, TCS, Wipro,
code for reverse alternate words from astring
what do you mean by defining a variable in our c code?