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.
how to go with this?
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
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
What is adt in c programming?
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!+....
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
write a program to find the largest and second largest integer from an array
#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);}
What is operator precedence?
write a program to print the one dimensional array.
Can a void pointer point to a function?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?