#define MAX_COURSES 10 // Maximum number of courses you can input
// Function to calculate the weighted CGPA
float calculateWeightedCGPA(float cgpas[], int credits[], int n) { float totalWeightedCGPA = 0.0; int totalCredits = 0; int i; // Declare loop variable here