Answer Posted / jolly
array is on type of index
| Is This Answer Correct ? | 43 Yes | 25 No |
Post New Answer View All Answers
What's the difference between constant char *p and char * constant p?
What are the storage classes in C?
Explain what are run-time errors?
What library is sizeof in c?
What is the use of void pointer and null pointer in c language?
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.
What is the scope of local variable in c?
What does int main () mean?
How we can insert comments in a c program?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Tell us two differences between new () and malloc ()?
What is the need of structure in c?
List the different types of c tokens?
What are the advantages and disadvantages of c language?
How #define works?