Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include "stdio.

h"

void writename();

void writename()
{
printf("John Q. Doe\n");
}

int main()
{
int index;

for(index = 0 ; index < 10 ; index = index + 1)


writename();

return 0;
}

/* Result of execution

John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe

*/

You might also like