Question from the Language C - Fundamentals test

Archived

What does the following code display?

    int main() 
    {     
        char name[]; 
        int age = 18; 
        double height= 1.75;
        scanf(“%s”, name);
        printf(“%d/n%f/n%s/n”,age,height,name);
        
        return 0;    
    }
Author: KahinaStatus: Archived(New question!)Question passed 9 times
0
Community EvaluationsNo one has reviewed this question yet, be the first!