write a program to rearrange the array such way that all even
elements should come first and next come odd
Why can’t we compare structures?
Can u return two values using return keyword? If yes, how? If no, why?
What are the loops in c?
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
What is quick sort in c?
Three major criteria of scheduling.
What is the difference between exit() and _exit() function?
Write a program in c to print * * * * * *******
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
What is a structure member in c?
What are terms in math?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }