When I do something like
#include<iostream>
int main()
{
int x;
return 0;
}
I get a warning about x being an unreferenced local variable (I assume becuase I created a variable, then did not use it), why does this give me a warning though?