Note: (Restricted functionality due to obvious reasons!)

For Mobile-Ease ⇓

Minimal Code ( Raw-View ) :
class ReverseWholeStr { public static void main(String zee[]) { String str = "Kuchh to hai"; System.out.println(str+" reversed :"); int len = str.length(); for(int i = len; i>0; i--) { System.out.print(str.charAt(i-1)); } System.out.println(); } }