How does the modulus operator function

0 votes

Assume I need to prepare an array's output to display a specific amount of entries per line. How do I achieve it using the modulus operation?

The code below in C++ displays 6 items per line, but I have no idea how or why it works.

for ( count = 0 ; count < size ; count++)
{
    cout << somearray[count];
    if( count % 6 == 5) cout << endl;
}

What if I want to show 5 items per line? 

How can I locate the correct expression?

Jun 29, 2022 in C++ by Nicholas
• 7,760 points

edited Mar 4 18 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP