summaryrefslogtreecommitdiff
path: root/tests/exec/octal.cpp
blob: 649ebde13860047271d5876aa3d472c4a43864df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>

int main() {
  std::cout << 0100 << "\n";
  std::cout << 0777 << "\n";
  std::cout << 0644 << "\n";
  int maxint = 017777777777;
  std::cout << maxint << "\n";
  int x = 037777777777;
  std::cout << x << "\n";
  x = 020000000000;
  std::cout << x << "\n";
}