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.
difference between my-strcpy and strcpy ?
3 Answers Geometric Software, IIM, Infosys,
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
Explain how do you list a file’s date and time?
Is there a way to switch on strings?
write a method for an array in which it can display the largest n next largest value.
What is the Lvalue and Rvalue?
What are the two types of functions in c?
What kind of structure is a house?
int far *near * p; means
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
what is data structure?
What is else if ladder?