home
Learn
screen_rotation
#include <stdio.h> #include <conio.h> int m = 100; /* global */ void f1(){ int m = 10; /* local */ printf("\n value of m = %d",m); } void main(){ clrscr(); f1(); getch(); }
Program Output
value of m = 10