Welcome to the Technical Mentorship 2025 repository! This is your space to learn, practice, and grow your programming skills through hands-on problem solving.
You need to solve the following 4 programming challenges:
- Armstrong Number - Check if a number is an Armstrong number (sum of cubes of digits equals the number itself)
- Bubble Sort - Implement the bubble sort algorithm to sort an array
- Binary Search - Implement binary search to find an element in a sorted array
- Matrix Multiplication - Multiply two matrices and display the result
Please follow this file structure when submitting your solutions:
Technical-Mentorship-2025/
│
├── Your_Name/
│   ├── armstrong_number.c
│   ├── bubble_sort.c
│   ├── binary_search.c
│   └── matrix_multiplication.c
│
├── Another_Person/
│   ├── armstrong_number.c
│   └── ...
│
└── README.md
Example:
Mayank_Kumar/
├── armstrong_number.c
├── bubble_sort.c
├── binary_search.c
└── matrix_multiplication.c
- Create a folder with your name (use underscores for spaces)
- Add your C programs with the exact naming convention shown above
- DO NOT push .exefiles or any compiled binaries
- Commit your changes with meaningful commit messages
- Push to the repository
Remember: This mentorship is about learning and growth, not competition. Take your time, understand the concepts, and enjoy the coding journey!
Happy Coding!