I've been working on a program that inverts a word and changes the vowels in the word into an asterisk..
I'm confused on where to put the strset in my code.. can someone teach me how to?
thanks..
Here's my code.. I know it's simple but I'm just a beginner in this field.
#include<stdio.h>
#include<conio.h>
#include<string.h>
char str1[25];
void main()
{printf("Enter a word:\t");
scanf("%s",str1);
{printf("%s\n",strrev(str1));}
getch();
}
Thanks.