Problem with accelStepper, coding and processing

void headToPoint(int x, int y) {
    long theta = atan2(y, x);
    long thetaPos;    // declare an uninitialized local variable
    long thetaDiff = theta - thetaPos;

What is the value of thetaPos after it is declared?