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 |
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
what is inline function?
How can a process change an environment variable in its caller?
what is disadvantage of pointer in C
How Many Header Files in c?
Explain how are portions of a program disabled in demo versions?
write a c program that prints all multiples of 3between 1 and 50.
write a c program in such a way that if we enter the today date the output should be next day's date.
c pgm count no of lines , blanks, tabs in a para(File concept)
Hi, main() { } Is a user defined function or Built in Functionn
Write a program to print fibonacci series using recursion?