#include <stdio.h>
#include <string.h>
int main()
{
char str1[5], str2[5];
printf("%c\n", strcpy(str1, strcpy(str2, "test"))[0]);
return 0;
}
References: C From Theory