Programming Blog

This blog is about technical and programming questions and there solutions. I also cover programs that were asked in various interviews, it will help you to crack the coding round of various interviews

Thursday 25 January 2018

Java program to remove white spaces

public class White
{ public static void main(String a[])
{ String MyString = "remove white spaces "; System.out.println(MyString.trim()); }
}

No comments:

Post a Comment