Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
B_141209_EsMayor
//Title of this code #include <stdio.h> double esmayor(double a, double b); int main(void) { double x, y; printf("\nValor de x ... "); scanf(" %lf", &x); printf("\nValor de y ... "); scanf(" %lf", &y); printf("\n\nEl mayor es ... %lf\n\n", esmayor(x,y)); return 0; } double esmayor(double a, double b) { return a > b ? a : b; }
run
|
edit
|
history
|
help
0
array and its sum
2-dimension array got area by malloc()
CO Assignment 1 Question 1
Add.c
02468
project menu
1, 2, 3, & 4-layer neural networks in C
C_141105_PuntosTriangulo
Prime
20171117_FUNCIONES