17 lines
309 B
C
17 lines
309 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
int main(void) {
|
|
|
|
char aPassword[30] = "SuperSecurePassword1234!",
|
|
uPassword[30] = "SuperSecurePassword1234 !";
|
|
|
|
if (!strcmp(aPassword, uPassword)) {
|
|
printf("Bienvenue");
|
|
} else {
|
|
printf("Alerte");
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|