Problem
I've this simple script to verify the argv. The problem is that if I try to input the argv 1 to "-help" it don't print the string "banner". Why it is not printing the string?
I think that is important to say that I'm noobie with the C language.
Script
#include <stdio.h>
#include <conio.h>
void main(int argc, char *argv[ ]){
    int cont;
    printf("argv 1 -> %s", argv[1]);
    if(argv[1] == "-help"){
        printf("banner");
    }
    if(("%s", argv[1]) == "-help"){
        printf("banner");
    }
//main
}
 
    