Answer:B
Explanation:Trust me I’m in theater
Yes do you have PicsArt? Or you can also make it look like a motion to make the hand look like third hand
Answer:
Weddings and Special events
Professional flower shops handle special events all the time such as weddings, birthdays, anniversaries and others. A floral designer will be needed in this area by such shops to offer efficient service that will satisfy the client.
Funerals
Funerals are another main event that these shops will be needed for but these ones need more care. A competent designer will therefore be needed to go to grieving family to find out what design would suit them. This would then need to be applied with as much tact as possible.
High-End custom
There will also be high end customers who need flowery decorations for their offices or homes. These designers will have to be skilled in using dried and silk designs that will last in the place they are put whilst still beautifying the place.
Well let me explain this to you in a better way. The terms 'subprogram', 'function' and 'method' have all the same meaning in C/C++ but we usually called them functions, and we divide the functions into two types :
1)Function : it's the usual one, as we all know, it returns a value.
2) General format :
Type function_name(<arguments>){
// Your work
return <value/variable> //Note : the type must be the same as the function
// type.
}
Example :
int Maheen(int a, int b){
int c = a + b;
return c;
}
Procedure : it's a function but it doesn't return any value, it begins with 'void'.
General format :
void function_name(<arguments>){
// Your work
//Note : There is no return here.
}
Example :
void Maheen(int a, int b){
int c = a + b;
printf("The sum is : %d", c);
}
I think this can help you greatly
<span>
</span>