Help me in solving LJAJAG30 problem

My issue

approach

My code

#include <stdio.h>

int main() 
	// your code goes here
	{
	    char i,j ,space,rows=5;
	    for(i='E';j<='E';i++)
	        printf("");
	        { 
	        
	        for (j='A';j<=i;j++)
	        printf("%c",j);
	        }
	        
	        for(j=i-1;j>='A';j--){
	        printf("%c",j);
	        }
	        printf("\n");
	}

    return  0;
}


Learning course: Learn C Programming
Problem Link: https://www.codechef.com/learn/course/rcpit-programming-c/RCPITLPC37/problems/LJAJAG30