C | Büyük-Küçük Sayı Analizi
11 yıl önce Beyazıt Kölemen tarafından yazılmıştır.-2.322 Okunma
Girilen 2 integer sayı arasında hangisi büyük hangisi küçük tespitini yapmak;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
#include<stdio.h> #include<conio.h> int operation(int d,int e,int(*opt)(int,int)); int small(int a,int b); int large(int a,int b); int main(){ int x,y; printf("enter two integer numbers:"); scanf("%d%d",&x,&y); printf("calling operating by passing function(small):%d\n",operation(x,y,small)); printf("calling operating by passing function(large):%d\n",operation(x,y,large)); getch (); return 0; } int operation(int d,int e,int (*opt)(int,int)){ return (*opt)(d,e); } int small(int a,int b){ if(a>b) return b; else return a; } int large(int a,int b){ if(a>b) return a; else return b; } |
Bir Cevap Yazın