blob: 75e08ea7e354f1b49821b4a79f467fbbbd670989 [file] [log] [blame]
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
struct S { _Bool X, Y; char str[100]; };
struct S G = { 1, 1, "fooo" };
int main() {
int X = strlen(G.str);
if (X == 10) {
scanf("%d, %d\n", &G.X, &G.Y);
}
printf("%d %d %d\n", G.X, G.Y, X);
return X-4;
}