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

number-systems-02.c

Blame
  • number-systems-02.c 279 B
    #include <stdio.h>
    
    int main (void)
    {
      int number[] = { 023, 025, 027,  // Achtung: Oktalzahlen!
                       033, 035, 037,
                       123, 125, 127,
                       133, 135, 137 };
      for (int i = 0; i < 12; i++)
        printf ("%d\n", number[i]);
      return 0;
    }