Can you please explain the difference between strcpy() and memcpy() function?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to find factorial of a number using recursive function.
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
main() {int a=200*200/100; printf("%d",a); }
How can I do serial ("comm") port I/O?
how i m write c program 1.check prime number 2.prime number series
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
Compare array data type to pointer data type
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
write a function to find whether a string is palindrome or not and how many palindrome this string contain?
Which is the best sort method for library management?
Explain what are bus errors, memory faults, and core dumps?
which one is better structure or union?(other than the space occupied )