fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct {
  4. int age;
  5. int birth;
  6. } person;
  7.  
  8.  
  9. int main(void) {
  10. // your code goes here
  11.  
  12. person *you;
  13. you->age = 1;
  14. you->birth = 2;
  15. printf("%d, %d\n", you->age, you->birth);
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 5296KB
stdin
Standard input is empty
stdout
1, 2