Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
A_141211_mayor
//Title of this code #include <stdio.h> long mayor(long x, long y); int main(void) { long a, b, m; printf("Valor de a ... "); scanf(" %ld", &a); printf("Valor de b ... "); scanf(" %ld", &b); m = mayor(a, b); printf("\n\n\nEl mayor es %ld\n\n", m); return 0; } long mayor(long x, long y) { return x > y ? x : y; }
run
|
edit
|
history
|
help
0
sphere
150109_RecursividadParImpar
SOLUCION EJERCICIO SPOTIFY
PRÁCTICA DE QUICKSORT
Practice flipping the stars
gets.c
Program to calculate characters
14th Feb Project
What happens if you do a system() in rextester...
Area & Perimeter of Circle