Skip to content

Commit

Permalink
added array to func
Browse files Browse the repository at this point in the history
  • Loading branch information
adithyaanilkumar committed Jun 29, 2020
1 parent 102e1f2 commit e60eaa3
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions C/local_var.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// Local variables example
#include<stdio.h>

void function1(void);
void function2(void);
void main( )
{
int m = 1000; // m local to main
function2();
printf("%d\n",m); /* Third output */
}
void function1(void)
{
int m = 10; // this m is local to function1
printf("%d\n",m); /* First output */
}
void function2(void)
{
int m = 100; // this m is local to function2
function1();
printf("%d\n",m); /* Second output */
}

0 comments on commit e60eaa3

Please sign in to comment.