1#include <stdio.h>2 3extern int doTest();4 5int main()6{7 printf("%d\n", doTest()); // Set breakpoint here 8 return 0;9}10