What is substring in c?
Can you please explain the difference between exit() and _exit() function?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Can you please explain the scope of static variables?
write a program to rearrange the array such way that all even elements should come first and next come odd
Without Computer networks, Computers will be half the use. Comment.
Explain the advantages and disadvantages of macros.
Which is better pointer or array?
What is wrong with this initialization?
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.?
what is the difference between c and c++?
What is assignment operator?
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.