#include
int main()
{
float a, r = 0;
printf("please enter the radius of a circle:");
scanf ("%f", r);
a = 2 * 3.1416 * r;
printf("The radius of the circle is:");
printf("%f", a);
return 0;
}
不知道為什麼,編譯沒有問題,但是一運行就有錯誤,顯示停止運行
輸入要加取地址符號