#include"stdio.h" #include <conio.h> int display(int x, int y) { return x>y?x:y; } void main() { int a=display(3,4); printf("%d\n",a); getch(); }