Explain b+ tree?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
can we implement multi-threads in c.
what is the difference between 123 and 0123 in c?
In which header file is the null macro defined?
Please provide question papers of NATIONAL INFORMATICS CENTRE for Scientific officer
why r u join this company? give solid resons.
16 Answers IBM, Infosys, TCS,
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.?
c program to manipulate x=1+3+5+...+n using recursion
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
what is the use of call back function in c?tell me with example
How main function is called in c?
How can I send mail from within a c program?