99451b44创建于 2020年2月12日历史提交
#include <stdio.h>

int a_function_to_call()
{ 
    return 0;
}

int main()
{
    printf("%d\n", a_function_to_call()); // breakpoint
}