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

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

What is sizeof in c?

556


What are the advantages of external class?

580


What are c header files?

566


Do you have any idea about the use of "auto" keyword?

648


The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.

1620






#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

651


write a program to concatenation the string using switch case?

1545


Can two or more operators such as and be combined in a single line of program code?

791


What is dynamic memory allocation?

793


What is NULL pointer?

664


What is the difference between the local variable and global variable in c?

520


Why static variable is used in c?

540


What is the difference between #include and #include 'file' ?

596


What is hash table in c?

553


How many main () function we can have in a project?

600