Skip to content

Commit a1912ad

Browse files
committed
fix missing semicolons in c example
1 parent ea4d3b3 commit a1912ad

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

content/posts/jai-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ pointers to pointers and dereference chaining in c is like this:
172172

173173
int a = 3;
174174
int* b = &a;
175-
int** c = &b
176-
int*** d = &c
175+
int** c = &b;
176+
int*** d = &c;
177177

178178
int e = (*(*(*d))); // dereference in a chain
179179
```

0 commit comments

Comments
 (0)