C compiler with embedded metalanguage.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

15 строки
294 B

heynow() {
struct foo {int a; char b[2];} structure;
char **foo1 = (char *[]) { "x", "y", "z" };
structure = ((struct foo) {x + y, 'a', 0});
{
struct foo temp = {x + y, 'a', 0};
structure = temp;
}
output = ((int[]) { 2, x, 28 }) [input];
}