Identifiers are names that are given to various program elements, such as variables, functions and arrays. We can write a function, for example:
int function (int x);
Here, the parameter of the function is int x
.
My question is: can we call the parameter an identifier?