// Create a function that infinitely prints a message // The main thread also infinitely prints a message #include #include #include void run_code (void) { char * s = "Hello from the other function!!\n"; while (1) { for (int i = 0; s[i] != '\0'; i++) { putchar(s[i]); } } } int main (void) { run_code(); char * s = "Hello from the main\n"; while (1) { for (int i = 0; s[i] != '\0'; i++) { putchar(s[i]); } } return 0; }