design and implement a data structure and performs the
following operation with the help of file (included 1000
student marks in 5 sub. and %also)
1.how many students are fail in all 5 subjects (if >35)
2. delete all student data those are fail in all 5 subjects.
3. update the grace marks (5 no. if exam paper is 100 marks)
4. arrange the student data in ascending order basis of marks.
5.insert double of deleted students with marks in the list.
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of gets and puts?
Is c high or low level?
How can you increase the size of a statically allocated array?
How do we open a binary file in Read/Write mode 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.
Can i use Two or More Main Funtion in any C program.?
Can anyone tell what is stack overflow? what precaution we should take?
What is a struct c#?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
Explain how can I avoid the abort, retry, fail messages?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Write a C program where input is: "My name is xyz". output is: "xyz is name My".