#include <stdio.h>
int main()
{
char *str = "this";
for(; *str; printf("%s ", str++));
return 0;
}
References: C From Theory