What is the easiest sorting method to use?
No Answer is Posted For this Question
Be the First to Post Answer
Is it possible to execute code even after the program exits the main() function?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
Why is c called a mid-level programming language?
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.
Why c is called object oriented language?
Prove or disprove P!=NP.
Program to find the absolute value of given integer using Conditional Operators
What is oops c?
how do you redirect stdout value from a program to a file?
What is the difference between test design and test case design?
What are the rules for the identifier?