#include <stdio.h> #include <string.h> #include <stdlib.h> bool IsPasswordOK(void) { char Password[12]; gets(Password); return 0 == strcmp(Password, "goodpass"); } int main(void) { bool PwStatus; puts("Enter password:"); PwStatus = IsPasswordOK(); if (PwStatus == false) { puts("Access Denied"); exit(-1); } else { puts("Access Granted"); } return 0; }
[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)