English, asked by samikshya37, 2 days ago

a. How is cartoon making an art?​

Answers

Answered by vandanaarun11
1

Answer:

A cartoon is a form of expression, or communication, that refers to several forms of art, including humorous captioned illustrations, satirical political drawings, and animated film. Originally, the term referred to full-scale drawings for various forms of fine art, such as frescoes and tapestries.

Answered by jokoxav661
0

Explanation:

// Working of arithmetic operators

#include <stdio.h>

int main()

{

int a = 9,b = 4, c;

c = a+b;

printf("a+b = %d \n",c);

c = a-b;

printf("a-b = %d \n",c);

c = a*b;

printf("a*b = %d \n",c);

c = a/b;

printf("a/b = %d \n",c);

c = a%b;

printf("Remainder when a divided by b = %d \n",c);

return 0;

}

Similar questions