code:
Actually I want to print M.K.Gandhi but it is printing .Gandhi can you point out the problem.Quote:
public class T_alu_pain
{
public static void main()
{String s="Mohan Karamchand Gandhi";
s=" "+s;
int l=s.length();
int i,p=0;
char c;
for(i=0;i<l;i++)
{
c=s.charAt(i);
if(c==' ')
{
p=i;
}
}
for(i=0;i<=l;i++)
{
c=s.charAt(i);
if(c==' ')
{
System.out.print(c+".");
}
for(i=p+i;i<l;i++)
{
System.out.print(s.charAt(i));
}
}
}
}
