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



Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I..

Answer / vadivel t

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

Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I..

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

Post New Answer

More C Interview Questions

What is the Lvalue and Rvalue?

2 Answers  


What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?

3 Answers  


a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none

0 Answers  


in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above

0 Answers  


Is main() function predfined or userdefined?

11 Answers  






main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?

10 Answers   Ramco,


What is the use of pragma in embedded c?

0 Answers  


What is use of integral promotions in c?

0 Answers  


why do some people write if(0 == x) instead of if(x == 0)?

0 Answers  


how to determine the complexity of an algorithm as log(n)

1 Answers   Google,


pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)

0 Answers   Huawei,


how can i sort numbers from ascending order and descending order using turbo c..

1 Answers  


Categories