Welcome to the Codsoft Internship repository! This collection contains four beginner-friendly C++ projects designed to build foundational programming skills and problem-solving abilities. Each project showcases a different application, focusing on key concepts in C++ programming.
-
Number Guessing Game
- A game where the user attempts to guess a randomly generated number within a range.
- The program provides feedback if the guess is too high or too low.
- Key concepts: Random number generation, conditional statements, and loop control.
-
Simple Calculator
- A basic calculator performing addition, subtraction, multiplication, and division.
- Users input two numbers and select an operation.
- Key concepts: Functions, basic arithmetic operations, and error handling.
-
Tic-Tac-Toe
- A two-player console-based Tic-Tac-Toe game.
- Allows users to play a game of Tic-Tac-Toe with simple validation and display.
- Key concepts: Arrays, loops, conditions, and game logic implementation.
-
To-Do List
- A console-based application to manage tasks.
- Users can add, delete, and view tasks in their to-do list.
- Key concepts: File handling, vector management, user input/output, and data persistence.
- Clone the repository:
git clone https://github.com/username/Codsoft-Internship.git
- Navigate to each project folder and compile the code:
cd <project-folder> g++ main.cpp -o output ./output
Contributions are welcome! Feel free to submit issues or pull requests for improvements or bug fixes.