ts-c-compiler
ts-c-compiler copied to clipboard
⚙️ Multipass C Compiler, Assembler and X86 emulator written in TypeScript
Bumps [terser](https://github.com/terser/terser) from 5.10.0 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...
``` struct Vec2 { int x, y; }; struct Vec2 sum(int a, int b) { struct Vec2 out = { .x = a + b, .y = a - b...
``` int main() { int array[4][3] = { 1, 2, 3, 4 }; int sum = array[0] + 3 * 4; }``` change 3 value
``` void main() { int a, i = 0; a = i++ + ++i; } ```
```c int main() { int d = 5; { int k = 6, j = 7; } int k = 5; } ```