shithub: scc

ref: 1b51b30c2d7d831f8e8ef83b254fe6cd2052ff89
dir: /tests/cc/execute/0188-multi-string.c/

View raw version
#define STR(x) #x
#define RES "This is a string!"

int
main()
{
	char str1[] = STR(This is a string!);
	char str2[] = RES;
	int i;

	for (i = 0; str1[i]; i++) {
		if (str1[i] != str2[i])
			break;
	}

	return str1[i] - str2[i];
}