#include <iostream> // For stream I/O
usingnamespace std;
int function(int a)
{
return a;
}
int main()
{
function(int b);
}
Why is creating a variable inside the function argument list not allowed. Any reason other then for the language syntax or just for the language syntax?