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?
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?