Answer Posted / surya
O-> One
T-> Two
like
| Is This Answer Correct ? | 26 Yes | 5 No |
Post New Answer View All Answers
Explain a file operation in C with an example.
Where are local variables stored in c?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What is the difference between functions abs() and fabs()?
How can you convert integers to binary or hexadecimal?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
How to set file pointer to beginning c?
What are examples of structures?
Why do we use return in c?
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.
How do you construct an increment statement or decrement statement in C?
What is the purpose of macro in C language?
What is difference between main and void main?
What is modifier & how many types of modifiers available in c?
What is pass by value in c?