C to D converter
GitHub
C
// Start editing this C code to see the D translation #include <stdio.h> struct S { unsigned short x; }; int main(void) { char buf[10]; sprintf(buf, "%d", (int) 1.8); struct S *s; s->x = 3; return 0; }
D