I am new to C can anyone help me how to fix this code.
I am getting a error:
'else' without a previous if
#include <stdio.h>
#include <string.h>
int main()
{
    char str1[20];
    char str2[20];
    int value;
    printf("Enter the string: ");
    scanf("%s",str1);
    printf("Enter the string: ");
    scanf("%s",str2);
    value=strcmp(str1,str2);
    if (value==0);
    printf("The strings are same");
    else
    {
        printf("The strings are not same");
    }
    return 0;
}
 
     
    