summaryrefslogtreecommitdiff
path: root/understanding_scope.c
blob: 88f4f3838e55fa5486fcb28f2be4cf38620fff32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h> //printf

#include "tutorial6.h"
int a = 7;



int main(void)
{

    func1();

    return 0;
}