• Source
    1. void state_is_argument_function_parameter(int begin,int end,int extra_argument) {
    2. let's suppose extra_argument variable can be calculate using begin and end variable
    3.  
    4. extra_argument= begin-end;
    5.  
    6. here we find a relation between variable to reduce the number of arguments
    7. }