gccコンパイラによって警告が表示され、次のコードが実行されるとプログラムが中止されます。理由がわかりませんでしたか?誰かがそれを明らかにした場合、大きな助けになるでしょう。
#include<stdio.h>
#include<stdarg.h>
int f(char c,...);
int main()
{
char c=97,d=98;
f(c,d);
return 0;
}
int f(char c,...)
{
va_list li;
va_start(li,c);
char d=va_arg(li,char);
printf("%c\n",d);
va_end(li);
}
GCCは私にこれを教えてくれます:
warning: 'char’ is promoted to ‘int’ when passed through ‘...’ [enabled by default]
note: (so you should pass ‘int’ not ‘char’ to ‘va_arg’)
note: if this code is reached, the program will abort