Hey I have a problem with this program
#include <stdio.h>
int main( void )
{
char password;
password = NULL;
int n;
n = 1;
while (n != 6)
{
printf("Enter the password. \n");
scanf("%d", password);
if (password = "default")
{
printf("It was a correct password \n");
}...