int suma(int,int); // Recibe enteros, devuelve entero float suma(float,float); double suma(double,double);
| Tipo de argumento | Letras |
| void | v |
| void* | pv |
| unsigned char | uc |
| unsigned char* | puc |
| unsigned char& | ruc |
| signed char | zc |
| signed char* | pzc |
| signed char& | rzc |
| int | i |
| int* | pi |
| int& | ri |
| unsigned int | ui |
| unsigned int* | pui |
| unsigned int& | rui |
| long | l |
| long* | pl |
| long& | rl |
| unsigned long | ul |
| unsigned long* | pul |
| unsigned long& | rul |
| float | f |
| float* | pf |
| float& | rf |
| double | d |
| double* | pd |
| double& | rd |
| Declaración de funciones | Nombre ampliado |
| void imprim(void); | @imprim$qv |
| void imprim(int); | @imprim$qi |
| void imprim(int,int,int); | @imprim$qiii |
| int redim(long,unsigned int*); | @redim$qlpui |
| void despliega(char*); | @despliega$qpzc |
| int suma(int,int); | @suma$qii |
| float suma(float,float); | @suma$qff |
| double suma(double,double); | @suma$qdd |
| Página siguiente |