Got to know a new thing today that we can create integers by using new operator as below
new
int num = new int();
Now I wonder if
I think, you are looking for
int num = default(int);
This is also useful when facing compilation error, Unassigned local variable