#include int main(void) { int x; int y = 5; char text[20] = "Hejsan"; for (x = 1; y < 100; x++) { y = (y*3)-x; } printf("%s\n", text); return 0; }