what is the difference between strcpy() and memcpy() function?
Answer Posted / vinoth kumar
strcpy copies the data from one string to another...
memcpy copies the data's memory...
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Where does the name "C" come from, anyway?
What is the size of structure in c?
Explain what are its uses in c programming?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
Explain what are reserved words?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Give me the code of in-order recursive and non-recursive.
What’s a signal? Explain what do I use signals for?
what is event driven software and what is procedural driven software?
what are non standard function in c
Explain how do you declare an array that will hold more than 64kb of data?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What is the argument of a function in c?
Differentiate between #include<...> and #include '...'
Can we compile a program without main() function?