C
Programming and Technical
Programming
Program
Write a program to eliminate repeated word in a string without using built in function.
For ex: hi how are you. hope you are fine.
o/p: hi how are you. hope fine.
Read Solution (Total 3)
-
- i am unable to see answers but i am recieving email that someone posted answer. please help me
- 10 years agoHelpfull: Yes(4) No(1)
class StringDistinct
{
public static void main(String[] args)
{
string s1="developer";
string s2="";
char c=0;
for(int i=0;i- 10 years agoHelpfull: Yes(2) No(0)
- please any can post the code for this program...???????????
- 10 years agoHelpfull: Yes(0) No(0)
C Other Question