What is the difference between memcpy and memmove?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }

1 Answers   Vector,


Where does the name "C" come from, anyway?

0 Answers   Celstream,


difference between Low, Middle, High Level languages in c ?

0 Answers   Bosch, Infosys,


How can I read and write comma-delimited text?

0 Answers  


What is a void pointer in c?

0 Answers  






Explain what is the use of a semicolon (;) at the end of every program statement?

0 Answers  


What is pass by value in c?

0 Answers  


what do structure language means?

3 Answers   Microsoft,


What are the functions to open and close the file in c language?

0 Answers  


How can I change their mode to binary?

0 Answers  


write a c program to print the next of a particular no without using the arithmetic operator or looping statements?

1 Answers   TCS,


Why is the code below functioning. According to me it MUST NOT.

1 Answers  


Categories