What is the difference between union and anonymous union?
No Answer is Posted For this Question
Be the First to Post Answer
what are enumerations in C
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
What is Full Form of C and Why We use C
What are the different types of data structures in c?
what is the basis for selection of arrays or pointers as data structure in a program
Explain how can you avoid including a header more than once?
how do you redirect stdout value from a program to a file?
Explain how are portions of a program disabled in demo versions?
What are the different pointer models in c?
What is echo in c programming?
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.
Explain what is wrong with this program statement? Void = 10;