Answer Posted / murugesan kr
printf("\%d");
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
Why does everyone say not to use gets?
Does c have circular shift operators?
What is #include stdio h and #include conio h?
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);
Describe the steps to insert data into a singly linked list.
What are types of structure?
What is the most efficient way to store flag values?
When the macros gets expanded?
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.
Can the size of an array be declared at runtime?
if p is a string contained in a string?
Linked lists -- can you tell me how to check whether a linked list is circular?
What does 4d mean in c?
What does char * * argv mean in c?
Why does not c have an exponentiation operator?