why we take argument inside main function though we dont use any argumnet in main function
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
}