#include #include void count(int number,char *array,int lenght); int main(){ int input,lenght=0,x=0; char buffer[200]; char num[2]; printf("What single digit integer would you like to look for in a string : "); fgets(num,sizeof(num),stdin); sscanf(num,"%i",&input); printf("What is the string you would like to have?\n"); fgets(buffer,sizeof(buffer),stdin); while(buffer[x]!='\n'){ ++x; } count(input,buffer,x); return 0; } void count(int number,char *array,int length){ auto int count=0; /*counter for ...