#include <stdio.h>
void calculateSquare(int a) {
    int square= a*a;
    printf("the square of %d is %d\n", a, square);
}
int main() {
    calculateSquare(9);
    
    
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: