#include int main(){ char string [256]; printf ("Enter your string: "); gets (string); printf ("Your string is: %s\n",string); return 0;}