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.
No Answer is Posted For this Question
Be the First to Post Answer
write a program in c to read array check element is present or not?
What is optimization in c?
Does c have an equivalent to pascals with statement?
what is the use of fflush() function?
When we use void main and int main?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
List out few of the applications that make use of Multilinked Structures?
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
Why cann't whole array can be passed to function as value.
What is calloc in c?
How can you determine the size of an allocated portion of memory?
Explain what is the difference between far and near ?