difference between my-strcpy and strcpy ?

Answers were Sorted based on User's Feedback



difference between my-strcpy and strcpy ?..

Answer / vinod

There is nothing as my-strcpy,ur-strcpy etc...
u need to look at man page before doing anything silly..

As a programmer u need to understand naming conventions
better...

Is This Answer Correct ?    8 Yes 3 No

difference between my-strcpy and strcpy ?..

Answer / 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

difference between my-strcpy and strcpy ?..

Answer / shruti

yes there is nothing like my-strcpy..

i think u must have come accross some prog. in which a user
must have written a func. for string copy and named it as
my-strcpy...

strcppy is an in-built function for string copy.
the function body is present in string.h.

Is This Answer Correct ?    5 Yes 2 No

Post New Answer

More C Interview Questions

Hi can anyone tell what is a start up code?

0 Answers   CTS,


What is main () in c language?

0 Answers  


Why c++ is called c++ and not c+?

9 Answers   EBS,


WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *

3 Answers   Infosys, TCS,


List some of the static data structures in C?

0 Answers  






Explain the difference between malloc() and calloc() in c?

0 Answers  


What is extern variable in c with example?

0 Answers  


"I LOVE MY COUNTRY" write a c program to get "COUNTRY MY LOVE I" as the output. Use any other programming language. It is not mandatory to use C.

11 Answers   ABC Infotech, ADP, College School Exams Tests, Kovair,


what is the flow of execution in cprogram? ex:printf();,scanf();

2 Answers  


What is the use of ?: Operator?

0 Answers  


What is the use of pointers in C?

0 Answers   Impetus, Motorola, Tavant Technologies, Virtusa,


How to write the code of the program to swap two numbers with in one statement?

2 Answers  


Categories