Някой може ли да ми каже, защо имам 66 т. а не 100т.? Задачата е https://judge.softuni.bg/Contests/Compete/Index/1790#6
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char password[20];
scanf("%s", password);
if(strcmp("%s", "s3cr3t!P@ssw0rd") == 0){
printf("Welcome");
} else {
printf("Wrong password");
}
return 0;
}
Благодаря предварително!