I am confused about how to distinguish the use of "int" when declaring something an integer versus using it to initialize a variable.
In the following example I believe I am initializing the variables n,m,y:
int main(void)
{
int n,m,y ;
}
How can I tell between "integer" and "initialize"
Thank you