fork download
  1. #include <stdio.h>
  2.  
  3. struct studentlist{
  4. int id;
  5. char blo;
  6. double hei;
  7. };
  8.  
  9. int main(void) {
  10.  
  11. struct studentlist data[]={
  12. {1,'A',1.5},
  13. {2,'b',1.3},
  14. };
  15.  
  16. for(int i=0; i<2;i++){
  17. printf("%d",data[i].id);
  18. printf("%c",data[i].blo);
  19. printf("%f",data[i].hei);
  20. }
  21. return 0;
  22. }
  23.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
1A1.5000002b1.300000