Solution for Exercise 4-11

ex0411

#include <stdio.h>

int main()
{
    printf("I have been a stranger in a strange land.");
    return(0);
}

Notes

* This code is similar to the standard Code::Blocks skeleton, so you have seen the printf() function before.