In C, does initialising a variable to it\'s own value make sense? If yes, what for?
Allow me to elaborate. In Git sources there are some examples of initialising a varia
I think status = status doesn't change the value of status (compared to int status;). I think it is used to suppress the unused variable warning.
status = status
status
int status;
unused variable