Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LoadDragon0000000000/2762d2276bdc70d694f0d8472f1ea039 to your computer and use it in GitHub Desktop.
Save LoadDragon0000000000/2762d2276bdc70d694f0d8472f1ea039 to your computer and use it in GitHub Desktop.
#include <stdio.h>
void func(int* n) { // 変数のアドレスを受け取るという意味
*n = 333; // 受け取ったアドレスの中身(*n)に333を入れる
}
int main()
{
int number = 100; // 実際に扱うデータ
func(&number); // numberのアドレスを渡す
printf("%d", number);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment