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

Post New Answer

More C Interview Questions

how to go with this?

1 Answers   Wipro,


Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4

2 Answers   Mascot,


i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement

5 Answers  


What is adt in c programming?

0 Answers  


the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....

2 Answers   Ignou,






#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }

1 Answers  


write a program to find the largest and second largest integer from an array

2 Answers   Value Labs,


#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}

3 Answers  


What is operator precedence?

0 Answers  


write a program to print the one dimensional array.

1 Answers  


Can a void pointer point to a function?

0 Answers  


Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?

0 Answers   Celstream,


Categories