Answers for "modulus c"

C
3

c modulo

x % y
Posted by: Guest on March-20-2021
2

what is modulus operator

// given a list of widgets, files, people, etc.
longList = 10000; 
feedbackInterval = 100; // to be used as the modulus

// loop over the list to process each item
for( i=1; i <= longList; i++ ) {
	
  // perform some operation
	
  // mod operation gives feedback once every hundred loops
  if( i % feedbackInterval == 0 ) {
    percentCompleted = ( i / longList ) * 100;
    writeOutput( "#percentCompleted# percent complete. " );
  }
	
}
Posted by: Guest on October-03-2020

Code answers related to "C"

Browse Popular Code Answers by Language