This is my first time I ask , so please can help. My question is how can I Add any character between any string like , mean adding dot after every c (small letter) , but I dont want to use any function , I want to write my own void function with passing only one parameter that should be an array of char , Can help please?
I learn how to check every character in the string with
while(*p!='\0')
{
/// What should I write here to check if there is any dot , then add after it
/// a small c
p++;
}