├── 3D Vector └── Vector3f.cpp ├── LICENSE ├── Operator └── operator.c ├── README.md ├── Variable ├── Readme.md └── main.cpp ├── basic ├── README.md └── main.c ├── license └── server_client └── readme.md /3D Vector/Vector3f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzlahd/C/HEAD/3D Vector/Vector3f.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzlahd/C/HEAD/LICENSE -------------------------------------------------------------------------------- /Operator/operator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzlahd/C/HEAD/Operator/operator.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzlahd/C/HEAD/README.md -------------------------------------------------------------------------------- /Variable/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzlahd/C/HEAD/Variable/Readme.md -------------------------------------------------------------------------------- /Variable/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzlahd/C/HEAD/Variable/main.cpp -------------------------------------------------------------------------------- /basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzlahd/C/HEAD/basic/README.md -------------------------------------------------------------------------------- /basic/main.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | main() { 4 | printf("hai dunia"); 5 | } 6 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzlahd/C/HEAD/license -------------------------------------------------------------------------------- /server_client/readme.md: -------------------------------------------------------------------------------- 1 | contact me for source code 2 | --------------------------------------------------------------------------------