code markdown test <code> #include <stdio.h> int main() { int i, j; // Heart shape for (i = 6; i >= -6; i--) { for (j = -6; j <= 6; j++) { // Equation for a heart shape if ((i * i + j * j - 36 <= 0) && (i <= 0 || j == 0)) { printf("*"); } else { printf(" "); } } printf("\n"); } return 0; } </code>