Computer Science, asked by sammysourav, 4 months ago

1. strcopy() ਫੰਕਸ਼ਨ ਸਟਰਿੰਗਜ਼ ਨੂੰ ਕਾਪੀ ਕਰਨ ਲਈ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ ? strcopy() is a function used to copy strings? strcopy() फंक्शन स्ट्रिंग्स को कॉपी करने के लिए प्रयोग किया जाता है? *
ਸਹੀ True सही
ਗ਼ਲਤ False ग़लत​

Answers

Answered by mad210202
0

Answer:

The answer of the following question is TRUE.

Explanation:

strcopy() is a function that is used to copy strings.

  • It copy strings point by the source to the destination.
  • It accepts two arguments of pointer:
  • char
  • array of characters.
  • It return the first string.
  • This function does not to change the source string.

Syntax:

char* strcpy (char* destination, const char* source);

Similar questions