-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchar.c
executable file
·258 lines (209 loc) · 2.89 KB
/
char.c
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
/**
*
* @author @jeffotoni
* @copyright Copyright (c) 2017
*
* Different ways to declare a string using char
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/**
*
* Defining typedef of type char as vector
*
*/
typedef char string[];
/**
*
* Defining typedef of char type as vector pointer
*
*/
typedef char *string2[];
/**
*
* Defining typedef of type char as pointer
*
*/
typedef char *string3;
/**
*
* Main function
*
*/
int main() {
/**
*
* Defining a pointer with char and assigning a value
*
*/
char *stringx = "Avocado is delicious.";
/**
*
* Defining a char pointer statically
*
*/
char *fstring[0];
/**
*
* Knowing the size of the char
*
*/
int size = strlen(stringx) + 1;
/**
*
* Our first example using pointer char
*
*/
fstring[0] = (char*) malloc(size * sizeof(char));
/**
*
* Copying content stringx to fstring
*
*/
strcpy(fstring[0], stringx);
/**
*
* Showing the result
*
*/
printf("\nfstring: %s\n", fstring[0]);
/**
*
* Second example
*
*/
char stringy[strlen(stringx)];
/**
*
* Copying content stringx to fstring
*
*/
strcpy(stringy, stringx);
/**
*
* Showing the result stringy
*
*/
printf("\nstringy: %s\n", stringy);
/**
*
* Declaring a vector
*
*/
char *fstringx[] = {};
/**
*
* Allocating memory for the vect
*
*/
fstringx[0] = (char*) malloc(size * sizeof(char));
/**
*
* Copying content stringx to fstring
*
*/
strcpy(fstringx[0], stringx);
/**
*
* Showing the result stringy
*
*/
printf("\nfstringx: %s\n", fstringx[0]);
/**
*
* Declaring a vector pointer to pointer
*
*/
// char **fstringy[] = {};
/**
*
* Declaring a string
*
*/
string String = "jefferson name complete";
/**
*
* Declaring a string {}
*
*/
string2 String2 = {"jefferson something", "something there"};
/**
*
* Declaring a array
*
*/
char **array = (char**) malloc((10+1)*sizeof(char*));
/**
*
* Assigning values in our array
*
*/
array[0] = "fluffy";
array[1] = "small";
array[2] = "bunny";
array[3] = 0;
/**
*
* Declaring a y int
*
*/
int y[2][3] = { {10,20,30}, {100,200,300} };
/**
*
* Declaring a x char
*
*/
char x[2][3] = {"jef","ola"};
/**
*
* Declaring pointer c
*
*/
char* c[] = {"jef","ola","sel"};
/**
*
* Declaring vect work
*
*/
char work[] = {"I work here"};
/**
*
* Declaring vect work2
*
*/
char work2[] = {'A','B','C'};
/**
*
* Declaring pointer vect strings
*
*/
char* strings[3];
strings[0] = "foo";
strings[1] = "bar";
strings[2] = "baz";
strings[3] = "jef";
strings[4] = "je2";
/**
*
* Declaring a1
*
*/
char a1[][14] = { "Hello", "folks" };
/**
*
* Declaring a2
*
*/
char* a2[] = { "Hello", "guys" };
/**
*
* Declaring a3
*
*/
char (*a3[])[] = { &"Guys", &"People" };
printf("\n[%s] [%s]\n",a1[0], a1[1]);
printf("\n[%s] [%s]\n",a2[0], a2[1]);
printf("\n[%s] [%s]\n", *a3[0], *a3[1]);
}