Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rdemeter
GitHub Repository: rdemeter/so
Path: blob/master/lab2/exemplu-6.c
221 views
1
#include <stdio.h>
2
3
int f(int a, int b)
4
{
5
int c;
6
7
c = a + b;
8
9
return c;
10
}
11
12
int main()
13
{
14
char *bug = 0;
15
16
*bug = f(1, 2);
17
18
return 0;
19
}
20
21