#include <stdio.h>

struct lol{
	int x;
	char y;
	char *s;
};

int main(int argc, char *argv[]){
	struct lol kek;
	kek.x = 2;
	kek.y = 's';
	kek.s = "string";

	printf("%s\n", kek.s);
}
