File: test.c

package info (click to toggle)
rust-capstone 0.13.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 824 kB
  • sloc: sh: 341; ansic: 6; makefile: 2
file content (6 lines) | stat: -rw-r--r-- 125 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
#include <stdio.h>
int main(void) {
    int c = 42;
    c = c * c + 42;
    printf("Having done stuff, c is now %d\n", c);
}