#include <stdio.h> int main() { char array[100]; printf("Enter a string\n"); scanf("%s", array); printf("Your string: %s\n", array); return 0; }
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Enter a string
We love C.
Your string: We