c strcp code example
Example 1: strcpy
#include <stdio.h>
#include <string.h>
int main ()
{
char str1[]="Sample string";
char str2[40];
char str3[40];
strcpy (str2,str1);
strcpy (str3,"copy successful");
printf ("str1: %s\nstr2: %s\nstr3: %s\n",str1,str2,str3);
return 0;
}
Example 2: strcmp c
string a = "words";
string b = "words";
if (strcmp(a, b) == 0)
{
printf("a and b match");
}
else
{
printf("a and b don't match");
}
Example 3: c strcmp
int strCmp(const char* s1, const char* s2) {
while(*s1 && (*s1 == *s2)) {
s1++;
s2++;
}
return *s1 - *s2;
}