Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
C_141210_esMayor
//Title of this code #include <stdio.h> short esmayor(short x, short y); int main(void) { short a, b; printf("Valor de a ... "); scanf(" %hd", &a); printf("Valor de b ... "); scanf(" %hd", &b); printf("\n\nEl mayor es: %hd\n\n", esmayor(a, b)); return 0; } short esmayor(short x, short y) { return x > y ? x : y; }
run
|
edit
|
history
|
help
1
Funciones en C
B_141125_Repetidos
Sumit
menu
printing float pointers
B_141128_MatrizProducto
Type struct
Student. Txt
Valor fuera del intervalo
Max2