what is the difference between strcpy() and memcpy() function?
Answers were Sorted based on User's Feedback
Answer / manoj
memcpy can copy null bytes also if the size of memory is
given
strcpy stops after the first null byte.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / 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 |
Differentiate between the = symbol and == symbol?
In a header file whether functions are declared or defined?
What is const volatile variable in c?
What is string function c?
What is double pointer in c?
What does %p mean c?
How can I call a function with an argument list built up at run time?
Why are algorithms important in c program?
how can i print "hello"
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
Output for following program using for loop only * * * * * * * * * * * * * * *
LOGIC OF Bodmas?