mirror of
https://github.com/devproje/devproje.git
synced 2025-04-22 08:59:51 +09:00
Project_IO's Personal Profile
.gitignore | ||
main.c | ||
Makefile | ||
README.md |
// main.c
#include <stdio.h>
#include <stdlib.h>
#define MAX_MESSAGE_SIZE 30
int main(int argc, char **argv) {
char *str = malloc(sizeof(char) * MAX_MESSAGE_SIZE);
str = argv[1];
puts(str);
free(str);
return 0;
}
[projecttl@fedora ~]$ gcc -o a.out main.c
[projecttl@fedora ~]$ ./a.out 'Hello, World!'
Hello, World!
[projecttl@fedora ~]$
I'm Project_TL, A student developer 👨💻 working since 2015 🚀
- 🔭 I’m currently working on Cube Connect
- 🌱 I’m currently learning Rust, Unity
- ❓ Ask me about anything related to Minecraft Server Bukkit API
- ⚡ Fun fact:
- C not have bool type.(If not including stdbool.h)
- HTML is not programming language.