13389 . 判断题 Puls

运行以下程序后,变量a的值最终会变为20。

void modify(int *p) {
    *p = *p + 10;
}
int main() {
    int a = 10;
    modify(&a);
    return 0;
}