Skip to content
Snippets Groups Projects
Select Git revision
  • 2016ws
  • 2024ws default
  • 2023ws
  • 2022ws
  • 2021ws
  • 2020ws
  • 2018ws
  • 2019ws
  • 2017ws
9 results

strings-3.c

Blame
  • strings-3.c 157 B
    #include <stdio.h>
    
    int main (void)
    {
      char hello_world[] = "Hello, world!\n";
      char *p = hello_world;
      while (*p)
        printf ("%c", *p++);
      return 0;
    }