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.
What is character constants?
What is the benefit of using const for declaring constants?
How can I determine whether a machines byte order is big-endian or little-endian?
What does *p++ do?
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
Explain logical errors? Compare with syntax errors.
What is pragma c?
Binary tree traversing