What does it mean

  1. int main(int argc , char * argv [ ] )
  2. int tl=(i+1) *(j+1);

@Adityakumar3112 These are the parameters used when we want to take input from the command line itself. (bhaiya has compiled the code using the command line here, suppose we wanted to take the values of m, n etc from the command line before the execution of the program started, then these arguments could be used.) argc tells the number of arguments, Its default value is 1, as we have to give the name of the program as an argument too. argv is an array of strings, where each string represents a different argument. We have not used this feature in this program so you can skip this too. You can read more on this topic if you are still confused.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.