Computer Science, asked by shubham787736, 1 month ago

how to print string in c​

Answers

Answered by anjalirehan04
2

Input string containing spaces

int main() { char z[100];

printf("Enter a string\n"); gets(z);

printf("The string: %s\n", z); return 0; }

please mark me brain mark list

Similar questions