Advertisement
amolab

Untitled

Feb 18th, 2014
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. void main() {
  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=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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement