fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct
  4. {
  5. int id;
  6. char nojm[32];
  7. int salar;
  8. char phon[32];
  9. } data_t;
  10.  
  11. int main(void) {
  12. int i = 0;
  13. data_t m[4];
  14. while(fscanf(stdin,"%d,%[^/,],%d,%s", &m[i].id,m[i].nojm,&m[i].salar,m[i].phon) != EOF) {
  15. printf("%d,%s,%d,%s\n", m[i].id,m[i].nojm,m[i].salar,m[i].phon);
  16. i++;
  17. }
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0s 2252KB
stdin
1,example,2,3;
2,exampl,3,5;
3,examp,7,4;
4,exam,9,1;
stdout
1,example,2,3;
2,exampl,3,5;
3,examp,7,4;
4,exam,9,1;