Compare two strings

#include<stdio.h>
int main()
{
    char one[100];
    char two[100];
    printf("enter the value os a");
    scanf("%s",&one);
    printf("enter values");
    scanf("%s",&two);
    if(strcmp(one,two)==0)
    printf("strings are equal");
    else
    printf("non");
    system("pause");
    return 0;
}