What is memory leak in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program in c language for the multiplication of two matrices using pointers?
char ch=10;printf("%d",ch);what is the output
what is object oriental programing?
Explain how can I remove the trailing spaces from a string?
What is the difference between a free-standing and a hosted environment?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
Explain what is wrong with this program statement?
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }
which one is better structure or union?(other than the space occupied )
what about "char *(*(*a[])())();"
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
Explain what is wrong in this statement?