fork download
  1. #include <stdio.h>
  2.  
  3. struct student {
  4. int a;
  5. int b;
  6. int c;
  7. };
  8. int main(void) {
  9. struct student aiu;
  10.  
  11. aiu.a = 1;
  12. aiu.b = 'A';
  13. aiu.c = 3;
  14.  
  15. printf("%d",aiu.a);
  16. printf("%c",aiu.b);
  17. printf("%d",aiu.c);
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0.01s 5272KB
stdin
Standard input is empty
stdout
1A3