<h3>Question Description</h3> <h2><strong>Interview of Human Services Professional</strong></h2><p>In this assignment, you will take the opportunity to conduct an interview with a professional who carries out direct service tasks in the human
<p>What is the output of the below program with input “3”</p><p>#include<stdio.h></p><p>int fonksiyon ( int gln ) {</p><p>if( gln <= 1 )</p><p>return 1;</p><p>else return (gln*fonksiyon(gln– 1)); }</p><p>int main ( void )