void clockwise(int steps) { stepper.step(steps); del(2000); } what datatype must be required for the argument to the step() function?
stepper.step(steps); to step function we are passing steps as parameter. data type of steps is int. so, datatype of the argument of step function is an int. Answer: int
void clockwise(int steps) { stepper.step(steps); del(2000); } what datatype must be required for the argument to...