KarlSciberras
Programmer
Note the following piece of code:
The code below, seems to me the equivalent:
My questions are:
1. What is the difference between the two pieces of code ?
2. Are there any advantages of using one method instead of the other ?
Code:
int func (myval)
int myval;
{
//statements...
}
The code below, seems to me the equivalent:
Code:
int func (int myval)
{
//statements...
}
My questions are:
1. What is the difference between the two pieces of code ?
2. Are there any advantages of using one method instead of the other ?