summaryrefslogtreecommitdiff
path: root/deneme_33.c
blob: d93397f2351f395822c622ebdcf967593c12044b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>

int main() {
	char x[4];

	for (int i = 0; i < 4 ; ++i) {
		printf("&x[%d] = %d\n",i, &x[i]);
	}

	printf("Arrdess of array x: %d\n",&x);
	int *test; 
	test = NULL;
	printf("%d\n",test);
}
// x array ise x+1 degisken adresini bir sonraki degiskene kadar arttirir.