View difference between Paste ID: ewTAYama and 2HcymPnd
SHOW: | | - or go back to the newest paste.
1
#include <stdlib.h>
2
#include <stdio.h>
3
4
void main() {
5-
	int cantidad;
5+
	int cantidad, i;
6
	double *p, *p2;
7
8
	print("Introduce que cantidad de numeros vas a introducir:/n");
9
	scanf("%d",&cantidad);
10
	p=(double*)malloc(sizeof(double)*cantidad);
11-
	p2=(double*)malloc(sizeof(double)*cantidad);
11+
	p2=sizeof(double)*cantidad;
12
	for(i=0;i<cantidad;i++){
13
		print("/nIntroduce un numero:/n");
14
		scanf("%lf",p2);
15
		p2++;
16
	}
17
	media(p2,cantidad);
18
	varianza(p2,cantidad);
19
	free(p);
20
}