Skip to content
Snippets Groups Projects
Select Git revision
  • b7e23c4322e4e1b217dc9e831f9931597108beef
  • master default protected
  • prod_dlrg
  • bugifx_configure_once
  • fix_path_chaos
  • feature_mumbleIntegration
6 results

config.py

Blame
  • arrays-pointers-17.c 182 B
    #include <stdio.h>
    
    int main (void)
    {
      char *hello = "Hello, world!";
      char p[] = { hello + 'a' };  /* ein Element des Arrays initialisieren */
      printf ("%s\n", p);
      return 0;
    }