Skip to content

Commit cf4c852

Browse files
committed
add simple example of pointer
1 parent 3938082 commit cf4c852

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

a.out

-112 Bytes
Binary file not shown.

strings.c

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// return 0;
77
// }
88
// ⭐⭐ String Format specificr
9-
9+
1010
// #include <stdio.h>
1111
// int main(){
1212
// char name [40] ;
@@ -17,5 +17,22 @@
1717
// return 0;
1818
// }
1919

20-
// Emoji
20+
// 🔲
21+
22+
#include <stdio.h>
23+
int main()
24+
{
25+
char *canChange = "Hello Wrold";
26+
puts(canChange);
27+
char *change = "Hello";
28+
puts(change);
29+
return 0;
30+
}
31+
32+
// #include <stdio.h>
33+
// int main(){
34+
// return 0;
35+
// }
36+
37+
// Emoji
2138
// // 1️⃣ 2️⃣ 3️⃣ 4️⃣ 5️⃣ 6️⃣ 7️⃣ 8️⃣ 9️⃣ 🔟 🔳 🔲 ⭐ 🌟 ✨ 💫 🌠 🌌 🟊 🌠 🌟🌟 ⚡ 🔔 🎯 🎖️ 🏆 🛑

0 commit comments

Comments
 (0)