pointer課題

#include<stdio.h>

void sub(int *x)
{
	 *x=200;
}
	

int main(void)
{
	int x=100;
	sub(&x);
	printf("x=%d\n",x);
	return 0;
}	

コメント