aboutsummaryrefslogtreecommitdiff
path: root/tests/hello_world_exit.c
blob: 8932caf2dc6af7df20d2bb0163c13f5d71f5cf71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include<stdio.h>
#include<stdlib.h>

int main(int argc, char **argv) {
  printf("argc: %d\n", argc);
  for(int i = 0; i < argc; ++i) {
    printf("argv[%d]: %s\n", i, argv[i]);
  }
  if (argc <= 1)
    exit(1);
  printf("hello, world!\n");
  fprintf(stderr, "hello, error stream!\n");
  exit(100);
}