Friday, June 20, 2014

gets() and puts() function in String

#include<stdio.h>
int main()
{
    char c1[100];
    puts("Enter String : ");
    gets(c1);
    printf("You Have Entered : %s",c1);

}

No comments:

Post a Comment