Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
x86_64 マシンを実行しているその C プログラムは、このように出力がどのように行われるかを知りたい
main() { int *mess; mess=malloc(1); mess[0]=1; //mess[1]=2; printf("%d",mess); }
ここでの出力は 6295568 です
どうですか??