write a program to find the sum of the array elements in c
language?
Post New Answer View All Answers
Can a variable be both static and volatile in c?
How can I find out how much free space is available on disk?
How important is structure in life?
What are void pointers in c?
What is derived datatype in c?
Explain what happens if you free a pointer twice?
Explain built-in function?
What is sizeof int in c?
What is the difference between fread and fwrite function?
What are the different types of C instructions?
What are the types of operators in c?
What is pointer to pointer in c with example?
How can I write a function analogous to scanf?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
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.