diff options
Diffstat (limited to 'c_seguridad/code/strcmp.c')
-rw-r--r-- | c_seguridad/code/strcmp.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/c_seguridad/code/strcmp.c b/c_seguridad/code/strcmp.c new file mode 100644 index 0000000..23ab60a --- /dev/null +++ b/c_seguridad/code/strcmp.c @@ -0,0 +1,19 @@ +#include <stdio.h> +#include <string.h> + +int main() { + char str1[] = "aaaa"; + char str2[] = "aaaa"; + + if (strcmp(str1, str2) == 0) + printf("strcmp: Son iguales\n"); + else + printf("strcmp: No son iguales\n"); + + if (str1 == str2) + printf("==: Son iguales\n"); + else + printf("==: No son iguales\n"); + + return 0; +} |