import java.util.Scanner;
public class palindrome{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String str = sc.nextLine();
        String rev;
        for(int i=str.length()-1,k=0;i>=0 && k<str.length();i--,k++)
        {
            rev.charAt(k) = str.charAt(i);
        }
        if(rev==str)
        System.out.println("string is palidrome");
        else
        System.out.println("string is not palindrome");
    }
}
what is wrong with this code? note: error is showing at the following line of code rev.charAt(k)=str.charAt(i);
 
     
    