Select Git revision
Forked from
Peter Gerwinski / bs
Source project has a limited visibility.
string-ops-9.c 261 B
#include <stdio.h>
#include <string.h>
int main (void)
{
char *anton = "Anton";
char *zacharias1 = "Zacharias";
char *zacharias2 = "zacharias";
printf ("%d\n", strcmp (anton, zacharias1));
printf ("%d\n", strcmp (anton, zacharias2));
return 0;
}