How many types of sorting are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between class and structure?
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
What is a volatile keyword in c?
print the table 5 in loops
Is there any demerits of using pointer?
How will you write a code for accessing the length of an array without assigning it to another variable?
How does placing some code lines between the comment symbol help in debugging the code?
What is variable in c with example?
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
How to draw the flowchart for structure programs?
How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include<stdio.h>...
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?