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

functions-01.c

Blame
  • chars-2.c 123 B
    #include <stdio.h>
    
    int main (void)
    {
      printf ("%d\n", '*');
      printf ("%x\n", '*');
      printf ("%c\n", 71);
      return 0;
    }