fork download
  1. #include <stdio.h>
  2. #include<stdlib.h>
  3. #include<math.h>
  4. typedef struct point{
  5. int x;
  6. int y;
  7. }list;
  8.  
  9. int main(void){
  10. list a, b, c;
  11. a.x=3;
  12. printf("%d", a.x);
  13. return 0;
  14. }
Success #stdin #stdout 0s 5272KB
stdin
Standard input is empty
stdout
3