fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct {
  4. char s[10];
  5. int a, b;
  6. double x;
  7. } Tipo;
  8.  
  9. int main(){
  10. Tipo v1[10];
  11. for (int i = 0; i < 10; i++) v1[i].b = 1;
  12. for (int i = 0; i < 10; i++) printf("%d\n", v1[i].b);
  13. }
  14.  
  15. //https://pt.stackoverflow.com/q/392380/101
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
1
1
1
1
1
1
1
1
1
1