Question: Question # 4. Implement the following functions: void insertStdName(int &count) string getStudentName() void showStdNames(int count) and verify its working using the following main program: #include
Question # 4. Implement the following functions: void insertStdName(int &count) string getStudentName() void showStdNames(int count) and verify its working using the following main program:
#include
using namespace std;
const int size=10;
string stdNameList[size];
string getStudentName()
{
// do
}
void showStdNames(int count)
{
//do
}
int main()
{
int count=0;
for(int i=0; i<5; i++)
{
insertStdName(count);
}
showStdName(count);
return 0;
}
Step by Step Solution
3.44 Rating (151 Votes )
There are 3 Steps involved in it
codecpp include include using namespace std const int ... View full answer
Get step-by-step solutions from verified subject matter experts
