brintos

brintos / llvm-project-archived public Read only

0
0
Text · 234 B · c02660b Raw
18 lines · c
1#include <stdio.h>2 3// breakpoint set -n foo4//5//6int foo (int value)7{8  printf ("I got the value: %d.\n", value);9  return 0;10}11 12int main (int argc, char **argv)13{14  foo (argc);15  printf ("Hello there: %d.\n", argc);16  return 0;17}18