int do_something(int num)
{
//stuff happens.
}
do_something(5)
Here we have given the input directly to the parameter, but if I want to give input to this using cout...
Like It asks me to give input and it directly store in the (int num).... How can I give... Please suggest me