[Solved] Replacing the goto Statement
Please let me know if I missed something #include “stdafx.h” #include <iostream> using namespace std; void Print(int count, int countSub, int rolePerGroup, int userCount, int userPerGroup) { for(int roleCount = 1; roleCount<=rolePerGroup; roleCount ++) { if(userPerGroup == 0) { cout<<“Parent groups are: “<< count <<” | “<<“Sub group are : “<<countSub<<” | “<<“Role per Sub … Read more