fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct{
  4. int id;
  5. int weight ;
  6. int height;
  7. }Body;
  8. void display(Body a[]);
  9. void swap(int *a,int*b);
  10. int main(void) {
  11. Body a[]={
  12. {1,65,169},
  13. {2,73,170},
  14. {3,59,161},
  15. {4,79,175},
  16. {5,55,168},
  17. };
  18. display(a);
  19.  
  20. return 0;
  21. }
  22. void display(Body ad[]){
  23. for(int i=0; i<5;i++){
  24. printf("id:%d",ad[i].id);
  25. }
  26. }
  27.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
id:1id:2id:3id:4id:5