Skip to content
Snippets Groups Projects
Select Git revision
  • 36bdc7414795e5c9bef13ccdd3cfa25b2c9f83f7
  • master default protected
  • development
3 results

topbar-item.jupyterlab-setting

Blame
  • 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;
    }