I am just coding and a simple idea (obviously question) comes to my mind that if I have a function like :
int fun1(int p){
return(p);
}
and I have a function like this:
int fun1(int p){
return p; ==> absence of parenthesis
}
so what the difference between those 2?