Hey, M1ndPuttY here! ![](https://camo.githubusercontent.com/d552948e7884c41fde2d32b9221d79f0df2076c7d824aaab954ca93f53d95884/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f6876524a434c467a6361737252346961377a2f67697068792e676966)
the world's full of lonely people afraid to make the first move..
- Linux
- Embedded
- Machine Learning
#include <stdio.h>
struct WhoAmI {
char *user;
char *current_work;
char *hobbies[4];
};
char* getcity(){
return "XIAN_CHINA";
}
int main() {
struct WhoAmI me = {
.user = "wangzhao",
.current_work = "Writing code",
.hobbies = {
"Model making",
"Watching Anime",
"motorcycle",
"bicycle"
}
};
char* Ambitions[3];
Ambitions[0] = "LearnEnglish";
Ambitions[1] = "Practice photography";
Ambitions[2] = "Be Well";
return 0;
}
- AI