Can you please explain the difference between strcpy() and memcpy() function?


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

Post New Answer

More C Interview Questions

#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }

7 Answers   HCL,


What is the relation between # and include<stdio.h>

5 Answers   HCL,


What are the advantages of union?

0 Answers  


how to print 212 as Twohundreds twelve plz provide me ans soon

1 Answers  


How do I declare a pointer to an array?

6 Answers   IBM,






main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā€œ%dā€,x); }

8 Answers   Vector,


What is difference between structure and union?

0 Answers  


Was 2000 a leap year?

0 Answers  


#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }

3 Answers  


how to write a data 10 in address location 0x2000

3 Answers  


Can we initialize extern variable in c?

0 Answers  


WHO WROTE C LANGUAGE?

4 Answers  


Categories