summaryrefslogtreecommitdiff
path: root/scope_tutorial/1.c
blob: fe38a56c1b35fcef0e47155cc0d3aaa07b204d7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <stdio.h>
#include "header.h"

int hello_num(int, int);
int a = 0;
int b = 0;

int main(void)
{
	int num = 1;

	{ 
		int num = 2;
	}

	auto double result;

//	double result2 = product_again(1,2); //results in error if uncommented because this function is specific to the file it was defined in
	int value = use_another_static_function(7, 3);

	result = product(1,2);

	int newNum = hello_num(1,2);

	printf("Newnum is: %d\na is: %d\tb is %d\n", newNum,a,b);

	printf("result is: %lf\n", result);

	printf("num is: %d\n", num);

	printf("use_another_static_function(7,3) returns: %d\n", value);

	return 0;
}


int hello_num(int a, int b) 
{
    	a++;
    	++b;    

    	return a;
}