If the user enters one the passwords below, I will ask him about secret question, but I don't do it using if else...
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define SIZE 20
int main(void) {
char pass[SIZE];
char originalPass[SIZE] = "abcDEF123=!)";
printf("Password: ");
fgets(pass, sizeof pass, stdin);
printf("\n");
// if the user enters one the passwords bellow, I will ask him about secret Q
// but I don't do it using if else...
/*
bacDEF123=!)
acbDEF123=!)
abDcEF123=!)
abcEDF123=!)
abcDFE123=!)
abcDE1F23=!)
abcDEF213=!)
abcDEF132=!)
abcDEF12=3!)
abcDEF123!=)
abcDEF123=)!
*/
return 0;
}