0
是否有可能獲得程序參數在xcode中工作?我正在爲大學工作,並希望在xcode中使用調試器來幫助我瞭解正在發生的事情。xcode中的程序參數
我知道代碼的編譯非常簡單,因爲我可以使用gcc編譯它,但xcode不能識別語法。
我試圖在Xcode運行的代碼是:
#include <stdlib.h>
#include <stdio.h>
int main() {
int a = 50;
int b = 100;
void P(int *c, void R(int)) {
void Q(int p) {
printf("%d\n", p);
R(p+100);
}
if (a == b) R(b);
else {c = c + 25;
P(c, Q);
}
}
void Q(int p) {
printf("%d\n", p);
}
P(&a,Q);
}