home
Learn
screen_rotation
#include <stdio.h> #include <string.h> #include <conio.h> void main(){ char str[50]; clrscr(); puts("What is c? => "); gets(str); puts(str); getch(); }
Program Output
What is c? => C is mother language. C is mother language.