int main (){
    char array[2] = {'hola', 'adios'};  
    int i = 0;
    while (i<3){
        printf("%c", array[i]);
        i++;
    }
    return 0;
}
I don't why the output is the final letter of each word, like this: as:)
And it appears a smiley face, wtf?
I simply want to output hola adios
 
     
     
     
    