home
Learn
screen_rotation
#include <stdio.h> #include <conio.h> void msg(){ printf("\n This is default function."); } void main(){ clrscr(); msg(); /*msg() function is calling */ getch(); }
Program Output
This is default function.