Program to illustrate the concept of puts() with gets() functions C Programming #include #include void main() { char name[20]; clrscr(); puts("Enter the Name"); gets(name); puts("Name is :"); puts(name); getch(); } Output Enter the NameBintu Name is : Bintu Read more » Tweet Share Share Share Share Related Post
ConversionConversion EmoticonEmoticon