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.
少し助けが必要です
私はこのコードを使用します
int *p; long b; puts("enter address:"); scanf("%l",&b); p=b; printf("%d\n",*p);
問題は、p がポインターであり、b が長いことです。ユーザーが入力したアドレスをポインター p に入れるにはどうすればよいですか?
そして、すべてに感謝します;)