Curso-lenguaje-C/fundamentos-programacion/PR3/soluciones_c/solucion4/suma.c

26 lines
414 B
C
Raw Normal View History

2024-05-22 20:18:58 +02:00
#include <stdio.h>
typedef struct
{
float collect[10];
int position;
} tReal;
void sumaValores(tReal *tabla)
{
float suma = 0;
for (int i = 0; i < tabla->position; i++)
{
suma += tabla->collect[i];
}
printf("%f", suma);
}
int main(int argc, char **argv)
{
tReal tabla = {{1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0}, 10};
sumaValores(&tabla);
return 0;
}