2 Ekim 2013 Çarşamba

Pointer ve fonksiyon kullanarak 3 sayı toplamını veren program

Sponsorlu Bağlantılar
#include<stdio.h>
int toplam(int *,int *,int *);
int main()
{
    int a,b,c;
    int *p1,*p2,*p3;
    int sonuc;
    p1=&a;
    p2=&b;
    p3=&c;
    printf("3 sayi giriniz \n");
    scanf("%d%d%d",&a,&b,&c);
    
    sonuc=toplam(p1,p2,p3);
    printf("Toplam=%d\n",sonuc);
    system("pause");
}
int toplam(int *a,int *b,int *c)
{
    int top;
    top=*a+*b+*c;
    return top;
}
Sponsorlu Bağlantılar

Hiç yorum yok:

Yorum Gönder