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
sum of arrays
poist
150109_RecursividadPrimo
función malloc()
18BCE2182 ASSESS_1 Q1-9
advanced string manipulation
Hello, World
C_141106_Divisores
problem4 review fundamentos
null p null q