1#include <stdio.h>
2
3int main(int argc, char const *argv[]) {
4 printf(format: "Got %d argument(s).\n", argc);
5 for (int i = 0; i < argc; ++i)
6 printf(format: "[%d]: %s\n", i, argv[i]);
7 return 0;
8}
9

source code of lldb/test/API/commands/platform/process/launch/main.c