#include<stdio.h>
int main()
{
printf("%d",a);
#define a 10
}
/*預處理活動做了compliation發生之前,爲什麼錯誤在這個節目來了,「一」是不確定的是 一個沒有定義*/定義指令
/*second doubt*/
#include<stdio.h>
#include<stdlib.h>
void fun();
int main()
{
fun();
#define a 20
}
void fun()
{
printf("i m inside the function %d",a);
}
output->i m inside the function 20
/*現在,這裏還錯誤應該作爲一個沒有定義的,因爲#定義之前樂趣的調用,但它的工作原理完全正確的*/
/*任何幫助將大大承認事先
*/ 感謝
非常感謝您的先生。 – user3679728