// Pantea Aria // You're at an ATM. // It asks you to enter your 4-digit PIN. // If it's wrong, it asks again — // and it will keep asking until you enter the correct one // am I repeating anything? yes -> loop -> while -> how many times -> we don't know // if pin is correct you stop // true or false // if pin is false I should repeating// pin in this question is called a sentinel value #include #define PIN 1234 int main(void) { return 0; }