[PR #530] [MERGED] Added a new Tic Tac Toe game made using C #952

Closed
opened 2026-01-29 15:16:26 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/530
Author: @ASaiVivek
Created: 5/17/2020
Status: Merged
Merged: 7/31/2020
Merged by: @kvedala

Base: masterHead: CGames


📝 Commits (10+)

📊 Changes

3 files changed (+463 additions, -0 deletions)

View changed files

📝 CMakeLists.txt (+1 -0)
games/CMakeLists.txt (+24 -0)
games/tic-tac-toe.c (+438 -0)

📄 Description

I thought it would be good to include a folder containing simple games we can make using C ,so i have made few games using C like Tic-Tac-Toe, Sudoku puzzle generator, etc. I think it brings out the creativity in any programmer while making games and also it's like the starting steps to any beginner programmer to who wants to develop video games.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/530 **Author:** [@ASaiVivek](https://github.com/ASaiVivek) **Created:** 5/17/2020 **Status:** ✅ Merged **Merged:** 7/31/2020 **Merged by:** [@kvedala](https://github.com/kvedala) **Base:** `master` ← **Head:** `CGames` --- ### 📝 Commits (10+) - [`e98c69a`](https://github.com/TheAlgorithms/C/commit/e98c69a9d20015524f2a9433e40a7684cfd8baa0) Added a new Tic Tac Toe game made using C - [`a0b81c8`](https://github.com/TheAlgorithms/C/commit/a0b81c81e9d3641191adde81fb11623489bf01b2) Removed .DS_Store from CGames - [`22005c9`](https://github.com/TheAlgorithms/C/commit/22005c945833e03c1bb31277131adcb8570ace02) Delete .DS_Store - [`4f8be34`](https://github.com/TheAlgorithms/C/commit/4f8be34fff49b2a206c95debffff2b3102f7b4c9) Updated Formatting - [`2e74ccd`](https://github.com/TheAlgorithms/C/commit/2e74ccdb6f6f46b881ec9af00f7bc92327380916) Deleted the file - [`a32185d`](https://github.com/TheAlgorithms/C/commit/a32185dc30c33765cb600734f27805777ec9e965) Merge branch 'CGames' of https://github.com/vivekboss99/C into CGames - [`686ff96`](https://github.com/TheAlgorithms/C/commit/686ff966c28fcd234184cd7f643e36a2b5860c14) Updated Code Formatting - [`9c01c45`](https://github.com/TheAlgorithms/C/commit/9c01c4501298bf5e3fd7b9df85018dec8d2262f6) Deleted .DS_Store again - [`fae9324`](https://github.com/TheAlgorithms/C/commit/fae9324e93f97d88e1c05ea4245aada3726d1216) Updated Comments in the Code - [`5ca8d8a`](https://github.com/TheAlgorithms/C/commit/5ca8d8a8dead3d14ebfac5d057557ff0fe681a7d) Updated code information ### 📊 Changes **3 files changed** (+463 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `CMakeLists.txt` (+1 -0) ➕ `games/CMakeLists.txt` (+24 -0) ➕ `games/tic-tac-toe.c` (+438 -0) </details> ### 📄 Description I thought it would be good to include a folder containing simple games we can make using C ,so i have made few games using C like Tic-Tac-Toe, Sudoku puzzle generator, etc. I think it brings out the creativity in any programmer while making games and also it's like the starting steps to any beginner programmer to who wants to develop video games. <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/530"><img src="https://gitpod.io/api/apps/github/pbs/github.com/vivekboss99/C.git/21726b7ab89fe0dd1162f84076202f4bc6b427c5.svg" /></a> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:16:26 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#952