How many keywords (reserve words) are in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
What is the difference between text files and binary files?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
Explain enumerated types.
What are the applications of c language?
Why & is used in scanf in c?
What is function pointer and where we will use it
Explain how do you use a pointer to a function?
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
What is the equivalent code of the following statement in WHILE LOOP format?
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.
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321