Skip to content
Snippets Groups Projects
Select Git revision
  • a691dd0feb04f13ece56450480fa97c9d4f2cd4d
  • main default protected
2 results

instructions.draft.md

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