From 1ef18183279eb15e1964612b25be8cf581fbbe70 Mon Sep 17 00:00:00 2001 From: Furkan Emin Can <78358128+femincan@users.noreply.github.com> Date: Wed, 19 Feb 2025 18:45:15 +0300 Subject: [PATCH] Update resources related to C / C++ (#8237) * Update resource link of C in game dev roadmap * Add resources for C / C++ in server side game dev roadmap --- .../game-developer/content/cc@jsq0UXnIIC0Z_nbK2w48f.md | 2 +- .../content/cc@E4H3hniIW6hKpH3Qr--N5.md | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/data/roadmaps/game-developer/content/cc@jsq0UXnIIC0Z_nbK2w48f.md b/src/data/roadmaps/game-developer/content/cc@jsq0UXnIIC0Z_nbK2w48f.md index 895b883e3..e1fe31744 100644 --- a/src/data/roadmaps/game-developer/content/cc@jsq0UXnIIC0Z_nbK2w48f.md +++ b/src/data/roadmaps/game-developer/content/cc@jsq0UXnIIC0Z_nbK2w48f.md @@ -6,5 +6,5 @@ On the other hand, **C++** follows the paradigm of both procedural and object-or Visit the following resources to learn more: -- [@article@The C Programming Language](https://www.iso.org/standard/74528.html) +- [@article@C Programming Language](https://en.wikipedia.org/wiki/C_%28programming_language%29) - [@article@C++ Programming Language](https://en.wikipedia.org/wiki/C%2B%2B) diff --git a/src/data/roadmaps/server-side-game-developer/content/cc@E4H3hniIW6hKpH3Qr--N5.md b/src/data/roadmaps/server-side-game-developer/content/cc@E4H3hniIW6hKpH3Qr--N5.md index ea412a98a..dba30aca0 100644 --- a/src/data/roadmaps/server-side-game-developer/content/cc@E4H3hniIW6hKpH3Qr--N5.md +++ b/src/data/roadmaps/server-side-game-developer/content/cc@E4H3hniIW6hKpH3Qr--N5.md @@ -1,3 +1,6 @@ # C / C++ -"C" and "C++", often written as "C/CPP", are two significantly prominent and similar programming languages widely used in server-side game development. "C" is a procedural language, which means that it follows a step-by-step procedure to solve a problem, while "C++" is both a procedural and object-oriented programming (OOP) language. This dual nature of "C++" allows it to handle more complex interrelated data and functions efficiently, which is a beneficial feature in game development. Moreover, "C++" is an extension of "C", meaning that any legal "C" program is also a valid "C++" program. Both languages offer a high degree of control over system resources and memory, making them an excellent choice for building fast and efficient server-side applications, such as multiplayer game servers. \ No newline at end of file +"C" and "C++", often written as "C/CPP", are two significantly prominent and similar programming languages widely used in server-side game development. "C" is a procedural language, which means that it follows a step-by-step procedure to solve a problem, while "C++" is both a procedural and object-oriented programming (OOP) language. This dual nature of "C++" allows it to handle more complex interrelated data and functions efficiently, which is a beneficial feature in game development. Moreover, "C++" is an extension of "C", meaning that any legal "C" program is also a valid "C++" program. Both languages offer a high degree of control over system resources and memory, making them an excellent choice for building fast and efficient server-side applications, such as multiplayer game servers. + +- [@article@C Programming Language](https://en.wikipedia.org/wiki/C_%28programming_language%29) +- [@article@C++ Programming Language](https://en.wikipedia.org/wiki/C%2B%2B)