Andrew_Manu

Libreria básica header

Jun 2nd, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.65 KB | None | 0 0
  1. #ifndef BASICALIB_H_INCLUDED
  2. #define BASICALIB_H_INCLUDED
  3.  
  4. #include <stdio.h>
  5.  
  6. int IngresarEntero(void);
  7. float IngresarFlotante(void);
  8. char IngresarLetra(void);
  9. int NumeroAleatorio(int Max, int Min);
  10.  
  11. void Llenar(int [], int Size);
  12. void MostrarDato(float Dato);
  13. void MostrarTexto(char Texto[]);
  14. void MostrarVector(int [], int Size);
  15.  
  16. /* Calculos */
  17. int Signo(int Num);
  18. int AlCubo(float Num);
  19. int Paridad(float Num);
  20. int AlCuadrado(float Num);
  21. int ValorAbsoluto(float Num);
  22. int Total(int [], int Size);
  23. int Minimo(int [], int Size);
  24. int Maximo(int [], int Size);
  25. float Promedio(float Total, float Numero);
  26.  
  27. int CompararLetra(char, char);
  28. #endif
Advertisement
Add Comment
Please, Sign In to add comment