QUESTION

#include <stdio.h>

#include <stdlib.h>

int main() {

char x[10];

char y[10];

char *z;

scanf("%s", x);

scanf("%3s", y);

scanf("%ms", &z);

printf("%s%s%s", x, y, z);

free(z);

return 0;

}


Given the code above, what's the output if the user type

192 37044 23
5
9

Public Answer

JQUKFN The First Answerer