fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct {
  4. int a;
  5. int b;
  6. int c;
  7. char d;
  8. char e[10];
  9. } Tipo;
  10.  
  11. int main(void) {
  12. Tipo obj = { 0, 1, 2, 'c', "x" };
  13. printf("%s", obj.e);
  14. Tipo obj2 = { .b = 1, .e = "x" };
  15. printf("%s", obj2.e);
  16. Tipo obj3;
  17. obj3 = (Tipo){ .b = 1, .e = "x" };
  18. printf("%s", obj3.e);
  19. }
  20.  
  21. //http://pt.stackoverflow.com/q/177876/101
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
xxx