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
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
Why void main is used in c?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
Define C in your own Language.
What is the use of structure padding in c?
Is exit(status) truly equivalent to returning the same status from main?
How do you define CONSTANT in C?
Differentiate between a structure and a union.
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
What is equivalent to ++i+++j?
Why enum is used in c?
write a progrmm in c language take user interface generate table using for loop?
What is the benefit of using #define to declare a constant?
Explain what is the difference between text files and binary files?