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

list the no of files created when c source file is compiled

9 Answers   TCS,


What are the advantages of union?

0 Answers  


Explain what are global variables and explain how do you declare them?

0 Answers  


What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }

4 Answers   CTS, Oracle,


Software Interview Questions

1 Answers   CAT,


how to implement stack work as a queue?

2 Answers  


WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.

0 Answers   Google, Infosys,


will the program compile? int i; scanf(“%d”,i); printf(“%d”,i);

3 Answers  


how to TOGGLE Nth bit of variable in a MACRO

1 Answers   NDS,


Explain the advantages of using macro in c language?

0 Answers  


How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.

1 Answers  


main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }

1 Answers   Vector, Vector India,


Categories