fork download
  1. #include <stdio.h>
  2.  
  3. struct Car{
  4. int year;
  5. char name[30];
  6. };
  7.  
  8. int main(void) {
  9. struct Car s1={2012,"toyota"};
  10. struct Car *ptr=&s1;
  11. printf("%d%s",ptr->year,ptr->name);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
2012toyota