Respuesta :

Answer:

The program to this question as follows:

Program:

#include <stdio.h> //including header file

int main() //defining main method

{

   printf("\t    ^   ^\n"); //print design

   printf("\t  ( o   o )\n"); //print design

   printf("\t      v"); //print design

   return 0;

}

Output:

    ^   ^

  ( o   o )

       v

Explanation:

In the C language program above, the header file is included first, then the main method is defined, inside this method print function is used to print the given design.

In the print function, we print values as a message, in which "\t and \n" are used. The "\t" is used for giving a tab space, and "\n" is used for print value in the new line.

Q&A Education