My issue
what is the name we use in c programming for strings like for integer we use int so what do we use for string
My code
#include <stdio.h>
int main() {
char x[10];
char[]("%s", &x);
printf("Hello ");
printf("%s", x);
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone