strings using gets and puts

 #include<stdio.h>

int main()
{
    char s[50];
    printf("enter s:");
    gets(s);
puts(s);
}

Comments