will this cause memory leaks if I don't make the variables become pointers? or will the compiler automatically do this for me? I am using Visual C++ 6.0.

Code:
#include<iostream.h>

int main()
{
int number = 255;
return 0;
}