A professional collection of C++ practice programs focused on problem solving, logic building, arrays, functions, string manipulation, and prime number algorithms.
This repository contains multiple C++ programming practice questions developed to improve programming concepts and problem-solving skills.
The projects demonstrate practical implementation of:
A payroll processing system that manages employee attendance records and calculates weekly work statistics.
void calculatePayroll(int logs[10][7], int bonusList[10], int &totalAbsences, double &averageWeeklyHours)
A string-processing application that sanitizes and formats student names according to given rules.
void sanitizeStudentName(char name[], char filterChar, int maxLimit)
A C++ program that processes sensor readings and replaces every even value with the next prime number.
bool isPrime(int n)
int nextPrime(int n)
void processReadings(int arr[], int size)
These questions helped improve understanding of:
โ
Programming Fundamentals
โ
Logical Thinking
โ
Problem Solving Techniques
โ
Function Design
โ
Data Manipulation
โ
String Handling
โ
Algorithm Development
โ
Code Structuring
โ
Debugging Skills
```