1. 1.
    0
    #include <stdio.h>

    int square(int a){
    int temp;
    temp = a * a;
    return temp;
    }

    int main(void){
    int b=0, c=0;
    scanf("%d", &b);
    c = square(b);
    printf("%d", &c);
    return 0;
    }

    bu anasını gibtiğimin programı niye çalışmıyo, illa recursive mi yapalım gibicem.
    ···
   tümünü göster