Im really new to C++ and am trying to write a program to Print this label 3 columns wide and 8 rows down? Any ideas would be much appreciated? at the moment i can only print it 8 rows down while its in a loop?
**********************************
* *
* Mrs Mary Jo Phillip *
* 31 Charles Street *
* Cardiff, Cf23 8XR *
* *
* *
**********************************
Thanks
#include <stdio.h>
void main ()
{
int x,
y;
x=1;
while (x<=8)
{
printf("********************************\n",x);
printf("* *\n",x);
printf("* Mrs Mary Jo Phillips *\n",x);
printf("* 31 Charles Street *\n",x);
printf("* Cardiff, Cf23 8XR *\n",x);
printf("* *\n",x);
printf("* *\n",x);
printf("********************************\n",x);