Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdlib.h>
- #include <stdio.h>
- void main() {
- int cantidad, i;
- double *p, *p2;
- print("Introduce que cantidad de numeros vas a introducir:/n");
- scanf("%d",&cantidad);
- p=(double*)malloc(sizeof(double)*cantidad);
- p2=sizeof(double)*cantidad;
- for(i=0;i<cantidad;i++){
- print("/nIntroduce un numero:/n");
- scanf("%lf",p2);
- p2++;
- }
- media(p2,cantidad);
- varianza(p2,cantidad);
- free(p);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement