In main function

why we take argument inside main function though we dont use any argumnet in main function

hello @TheSourabh

those are command line arguments .
we dont need them for our program.
u can write main without any argument it will work fine.

int main() { // it is correct

}