Bhuwan Sharmabhuwan.hashnode.devยทSep 22, 2024C Tutorial -5 (Functions and recursion)#include<stdio.h> #include<stdlib.h> #include<time.h> // Q.1 Function to find average of three numbers. float avg(int a, int b, int c){ int sum = a + b + c; float avg = sum/3.0; return avg; } // Q.2 Funtion to convert Celsius to Fahrenheit. float cel...CAdd a thoughtful commentNo comments yetBe the first to start the conversation.