<form action="/Dave/C/section2_4_7.html" METHOD="GET">
<input type="submit" value="Return to exercise">
</form>
 
The Solution is: 
<pre>
/* address.c - Program to print out name and address */

#include <stdio.h>

main()

{

   printf("Dr A.D. Marshall\nRoom M1/38\n\
Department of Computing Mathematics\n\
Mathematics Institute\nSenghennydd Road\n\
Cardiff\nCF2 4YN\nWales\nU.K.\n");

   exit(0);
}

</pre>
<form action="/Dave/C/section2_4_7.html" METHOD="GET"> 
<input type="submit" value="Return to exercise">
</form>  
 
