Answer Posted / rpjanaka
Then, is there a way to get out the number of bytes that
heap manager going to free, when I call free() function.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Explain pointer. What are function pointers in C?
Explain why can’t constant values be used to define an array’s initial size?
How can this be legal c?
What does the c preprocessor do?
What is difference between %d and %i in c?
What is your stream meaning?
Can a void pointer point to a function?
What is a nested loop?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Explain the use of 'auto' keyword
What is self-referential structure in c programming?
what is the difference between class and unio?
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.