2 Input & Output The program which show the use of printf() & scanf() function C Programming #include #include void main() { char name[20]; printf("Enter the Name : "); scanf("%s",&name); ... Read More Share Twitter Facebook Google+
0 Input & Output 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("Nam... Read More Share Twitter Facebook Google+