Skip to content
Snippets Groups Projects
Select Git revision
  • e48924b57cd3dd2afba7122942909b21f332715f
  • master default protected
  • 2018ws
  • 2017ws
  • 2016ws
5 results

blink-3.c

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    string-ops-4.c 268 B
    #include <stdio.h>
    #include <string.h>
    
    int main (void)
    {
      char *test1 = "Dies ist ein Test.";
      char *test2 = "Dies ist ein Test.";
      if (test1 == test2)
        printf ("Die Strings sind gleich.\n");
      else
        printf ("Die Strings sind verschieden.\n");
      return 0;
    }