-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsegfault.c
26 lines (24 loc) · 1.05 KB
/
segfault.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
/* ************************************************************************** */
/* LE - / */
/* / */
/* segfault.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: bpajot <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2018/07/23 18:35:58 by bpajot #+# ## ## #+# */
/* Updated: 2018/07/23 18:37:47 by bpajot ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
int main(void)
{
char tab[1];
int i;
i = 0;
while (1)
{
tab[i] = i;
i++;
}
return (0);
}