forked from cs107e/cs107e.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuggy.c
41 lines (36 loc) · 1.04 KB
/
buggy.c
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
/* File: buggy.c
* -------------
* This buggy program uses local variables that are not properly
* initialized. The contents will be garbage/unpredictable.
* Run this program on the Pi, and then again in gdb under
* simulation. Are the garbage contents the same? Do you get
* the same results on subsequent runs?
*/
#include "printf.h"
void stack_array(void)
{
char array[32]; // not initialized before read
printf("array[] = {");
for (int i = 0; i < 5; i++) {
printf(" 0x%x ", array[i]);
array[i]++; // increment starting from garbage
}
printf("}\n");
}
int local(int n)
{
int result; // not initialized
for (int i = 0; i < n; i++)
result++; // increment n times starting from garbage
return result;
}
int main(void)
{
printf("1st call stack_array (no initialization): ");
stack_array();
printf("2nd call stack_array (contents leftover): ");
stack_array();
int result = local(1);
printf("result from local() = %d\n\004", result);
return result;
}