[問4-1] 以下のプログラムを実行すると、どのような結果が出力されるか?
#include <stdio.h>

main()
{
	int a=3,b=5;
	int *x;
	
	a-=b;
	x=&a;
	printf("%d\n",*x);
}


トップへ / 次へ