2
I have the following problem to solve:
I arrived at this solution:
#include <stdio.h>
int main()
{
double numeros[99];
double resultante[49];
int i, j;
for (i = 0; i <= 99; i++)
{
scanf("%d",&numeros[i]);
}
for(i=0;i<=49;i++)
{
resultante[i] = numeros[i]*numeros[100-i];
}
for(i=0;i<=49;i++)
{
printf("%d",resultante[i]);
}
return 0;
}
I wonder why this code isn’t working, the returns are weird, they look like addresses, but I’m not sure.
can you answer my question? https://answall.com/questions/469237/identificar-registrations-sequentialof each user
– JavaScript