9 lines
127 B
C++
9 lines
127 B
C++
#include <stdio.h>
|
|
|
|
extern int doTest();
|
|
|
|
int main()
|
|
{
|
|
printf("%d\n", doTest()); // Set breakpoint here
|
|
return 0;
|
|
}
|