#include //Write the prototype of the functions here int main() { int flag=0; int c; char p[]="Hellow world"; char *q="MTH409: C program"; //Print the first string here reverse(p); //Print the first string here //Read a character from the keyboard into variable c flag=check_char(q,c); if(flag==0) { printf("The character %c is not present in \"%s\"\n",c,q); } else { printf("The character %c is present in \"%s\"\n",c,q); } return 0; } //Write details of function reverse here //Write details of function check_char here