我想了解如何打印一個整數值(我看到它是x/d)但我錯過了一些東西。 所以,我的代碼如下 1 #include <stdio.h>
2 main(){
3 int a;
4 int b;
5 int c;
6 int d;
7 int multiplied;
8 a = 5;
9 b = 6;
10 c = 7;
11 d = adding(a,b,c);
12 multipl
我有以下程序: void test_function(int a,int b, int c, int d){
int flag;
char buffer[10];
flag = 31337;
buffer[0]='A';
}
int main(){
test_function(1,2,3,4);
}
我gcc -g選項編譯它。 我設置了2個斷點之一,在main和main之後