diff --git a/README.md b/README.md
index 9846b85..bebf62a 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,32 @@
-###
I'm Dev_Project, A student developer šØāš» working since 2015 š
+```c
+// main.c
+#include
+#include
+
+#define MAX_MESSAGE_SIZE 30
+
+int main(int argc, char **argv) {
+ char *str = malloc(sizeof(char) * MAX_MESSAGE_SIZE);
+ puts(str);
+ free(str);
+
+ return 0;
+}
+```
+```sh
+~$ gcc -o message main.c
+~$ ./message 'Hello, World!'
+Hello, World!
+```
+
+
+### I'm Project_TL, A student developer šØāš» working since 2015 š
- š Iām currently working on [CUBE Connect](https://github.com/cube-connects)
-- š± Iām currently learning REST API
-- ā Ask me about anything related to Minecraft plugin
-- ā” Fun fact:
- - I'm really hate C++ and Skript and Lua's Array first index.
+- š± Iām currently learning MCU(MicroController Unit) and Backend
+- ā Ask me about anything related to Minecraft Server Bukkit
+- ā” Fun fact:
+ - C not have bool type.(If not including stdbool.h)
- HTML is **not** programming language.
@@ -15,117 +37,159 @@
-## Connect with me
-
+## Connect with me
+
+
+
+
+
+
+
+
+
+
+
+
+
-## Languages and Tools
-
-
-## HATE THINGS
-
-

-

-
-
+
+
+
+
+> Database
+
+
+
+
+
+
+
+
+
+
+### Langauges
+> Scripts
+
+
+
+
+> Frontend
+
+
+
+
+
+
+
+
+
+
+
+
+
+> System or Backend
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+> Application
+
+
+
+
+
+
+
+
+
+
+## HATE THINGS
+
+
\ No newline at end of file
diff --git a/main.c b/main.c
index 75fd2a1..76b4846 100644
--- a/main.c
+++ b/main.c
@@ -11,13 +11,12 @@ struct person {
int main(int argc, char **argv) {
struct person *project = malloc(sizeof(struct person));
-
strcpy(project->name, "Project_TL");
strcpy(project->job, "Student");
strcpy(project->email, "me@projecttl.net");
project->age = 18;
- puts("Current Profile:");
+ puts(strcat(project->name, "'s Profile:"));
printf("\tname: %s\n", project->name);
printf("\tage: %d\n", project->age);
printf("\tjob: %s\n", project->job);