#include #include //program that won't continue to the rest of the program unless the secret number //is entered int main() { int code; int secret = 7; //loop until the secret number is entered do { printf("input code: "); scanf("%d", &code); } while(code != secret); printf("executing main body of program..."); system("pause"); }