File: magic.c

package info (click to toggle)
libslow5lib 0.7.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 25,092 kB
  • sloc: ansic: 11,825; python: 1,179; sh: 547; makefile: 91; cpp: 40
file content (8 lines) | stat: -rw-r--r-- 142 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main(void) {
    int magic[2];
    printf("magic: %zu\n*magic: %zu\n", sizeof magic, sizeof *magic);

    return 0;
}