difference between my-strcpy and strcpy ?
Answer Posted / ningappa
strcpy is a library function and my-strcpy is a user
defined function......The function definition of strcpy
will be called when string.h library is added,whereas the
definition of my-strcpy has to be included by the user....
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What tq means in chat?
Explain how do you declare an array that will hold more than 64kb of data?
Write a program to reverse a linked list in c.
Why is main function so important?
Explain what is the concatenation operator?
Explain the binary height balanced tree?
Why do we use null pointer?
Is it better to use a macro or a function?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
Tell me what is null pointer in c?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Explain what is the difference between far and near ?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Explain Function Pointer?