This code will not run. Can somebody tell me why?
#include <stdio.h>
#include <string.h>
main (){
    char user[7];  
    printf("Username\n");
    scanf("%s",user);
    if(user == 'admin'){
        printf("Hello World");
    }else{
        printf("Bad");
    }
    return(0);
}
 
     
     
     
    