strcpy पर टैग किए गए जवाब

10
आपको स्ट्रॉन्की की जगह स्ट्रेंथ का इस्तेमाल क्यों करना चाहिए?
संपादित करें: मैंने उदाहरण के लिए स्रोत जोड़ा है। मैं इस उदाहरण में आया : char source[MAX] = "123456789"; char source1[MAX] = "123456789"; char destination[MAX] = "abcdefg"; char destination1[MAX] = "abcdefg"; char *return_string; int index = 5; /* This is how strcpy works */ printf("destination is originally = '%s'\n", destination); …

9
strcpy बनाम memcpy
बीच क्या अंतर है memcpy()और strcpy()? मैंने एक प्रोग्राम की मदद से इसे खोजने की कोशिश की लेकिन दोनों एक ही आउटपुट दे रहे हैं। int main() { char s[5]={'s','a','\0','c','h'}; char p[5]; char t[5]; strcpy(p,s); memcpy(t,s,5); printf("sachin p is [%s], t is [%s]",p,t); return 0; } उत्पादन sachin p is …
81 c  memcpy  strcpy 
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.