Write a program to set a pasword using string compare

//the pasword is www.candcpp.com

#include <stdio.h>
#include <string.h>
#include<conio.h>
int main()
{
char a[100], b[100]={‘w’,’w’,’w’,’.’,’c’,’a’,’n’,’d’,’c’,’p’,’p’,’.’,’c’,’o’,’m’};

printf(“Please Enter Passward:”);
gets(a);

if( strcmp(a,b) ==0 )
printf(“CONGRADULATION.\n”);
else
printf(“Wrong Passward!!\n”);
getch();
return 0;
}