Answer to Question #313496 in C++ for Simon

Question #313496

Write an executable program in C++ to display an array of 6 rows and 2 colums, using a double line comment to display "computer programming"

1
Expert's answer
2022-03-17T15:17:55-0400

Here is program:

int main()
{
	const int ROW = 6; 
	const int COL = 2;
	string arr[ROW][COL];
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog