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