-
Notifications
You must be signed in to change notification settings - Fork 1
/
063 - Pointer.cpp
85 lines (58 loc) · 1.86 KB
/
063 - Pointer.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*POİNTERLARA GİRİŞ
Pointer (Göstericiler) Kavramı*/
#include <iostream>
using namespace std;
void degerDEgistir (int x){
}
int main(){
int a = 20;
int *ptr = &a; // & işareti ile a'nın adresi değerini ptr'ye atamış olduk
cout << "Degiskenin Adresi : " << &a << endl; // adres değerine erişim
cout << "Degiskenin Adresi : " << ptr << endl; // adres değerine erişim
cout << "Degiskenin Degeri : " << *ptr << endl;
*ptr = 15;
cout << "Degiskenin Yeni Degeri : " << a << endl;
return 0;
}
// Bu kısmıda inceleyeiniz.
#include <stdio.h>
#include <stddef.h>
// İşaretçilere Giriş - Pointer (Gösterici) konsepti
void karesini_al(int* x);
int main(){
int t=5;
int*p=&t;
printf("%d",*p);
int* ptr1;
char* ptr2;
float* ptr3;
ptr1 = 0; // bu iki ifade eş
ptr2 = NULL; // bu iki ifade eş
printf("ptr1:%d, ptr2:%d\n",ptr1,ptr2);
int x = 23;
char c = 'a';
float f = 5.37;
/*
ptr1 = &x; // x değişkeninin adresini ptr1'e yaz.
ptr2 = &c; // c değişkeninin adresini ptr2'ye yaz.
ptr3 = &f; // f değişkeninin adresini ptr3'e yaz.
printf("x'in adresi:\t%p\nptr1'in değeri:\t%p\n\n",&x,ptr1);
printf("c'in adresi:\t%p\nptr2'in değeri:\t%p\n\n",&c,ptr2);
printf("f'in adresi:\t%p\nptr3'in değeri:\t%p\n\n",&f,ptr3);
printf("x'in değeri:\t\t\t%d\nptr1'in gösterdiği değer:\t%d\n\n",x,*ptr1);
printf("c'in değeri:\t\t\t%c\nptr2'in gösterdiği değer:\t%c\n\n",c,*ptr2);
printf("f'in değeri:\t\t\t%f\nptr3'in gösterdiği değer:\t%f\n\n",f,*ptr3);
*/
/*
scanf("%d",&x); // pass by reference
karesini_al(&x);// pass by reference
printf("%d\n", x);
*/
char d[500];
scanf("%s",d); // neden d & almadı?
printf("%s\n",d);
return 0;
}
void karesini_al(int* x){
(*x) = (*x) * (*x);
}