#include <stdio.h> #define MAX 15 int main() { char buf[MAX]; printf("Enter a string: "); gets(buf); printf("string is: %s ", buf); return 0; }