What is the explanation for prototype function in c?
what is the diffrenet bettwen HTTP and internet protocol
What does *p++ do? What does it point to?
What is difference between %d and %i in c?
Explain what are the standard predefined macros?
write a program to print the one dimensional array.
Explain Doubly Linked Lists?
What is anagram in c?
Why isn't it being handled properly?
What does the function toupper() do?
What ios diff. Between %e & %f?
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.?
Explain what a Binary Search Tree is.