-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathansi.c
57 lines (49 loc) · 759 Bytes
/
ansi.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/**
@file
@brief ANSI C
[ANSI C @ wikipedia](https://en.wikipedia.org/wiki/ANSI_C)
http://ee.hawaii.edu/~tep/EE160/Book/chapapx/node7.html
https://developerinsider.co/difference-between-c-and-ansi-c/
*/
#include <assert.h>
function_returns_int()
{
return 0;
}
void proc()
{
}
int main()
{
{
struct xy { int x, y; };
struct line { struct xy a, b; };
struct line c = {1, }; /* instead memset */
assert(c.a.x);
assert(!c.b.y);
}
{
char s[10] = {'a', };
assert(!s[9]);
}
{
signed char negative = -127;
assert(negative < 0);
}
{
long double ld;
assert(sizeof ld == 16);
}
{
const c = 1;
assert(c);
}
{
enum { e0, e1 } e;
e = e1;
assert(!e0);
assert(e);
}
assert(!function_returns_int());
return 0;
}