File: dec_to_bin.c

package info (click to toggle)
libslow5lib 1.3.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,280 kB
  • sloc: ansic: 13,123; python: 1,353; sh: 600; makefile: 98; cpp: 40
file content (9 lines) | stat: -rw-r--r-- 110 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int main(void) {
    int x = 1287;

    fwrite(&x, sizeof x, 1, stdout);

    return 0;
}