fork download
  1. /******************************************************************************
  2.  
  3. Welcome to GDB Online.
  4. GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
  5. C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
  6. Code, Compile, Run and Debug online from anywhere in world.
  7.  
  8. *******************************************************************************/
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. int main()
  12. {
  13. int i,j,k;
  14. scanf("%d",&k);
  15.  
  16. if(k%2==0||k==1|k<0){
  17. printf("Kindly enter an positive odd no.");
  18. exit(0);
  19. }
  20. else{
  21. for(i=0;i<2*k-1;i++){
  22. for(j=0;j<2*k+2;j++){
  23. if(j==k){
  24. printf("e");
  25. }
  26. else{
  27. printf("*");
  28. }
  29. }
  30. printf("\n");
  31. }
  32. }
  33.  
  34. return 0;
  35. }
  36.  
Success #stdin #stdout 0.01s 5288KB
stdin
3
stdout
***e****
***e****
***e****
***e****
***e****