Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include <stdio.h>
  2. int
  3. main()
  4. {
  5. int quote = 0, oc = EOF, c;
  6.  
  7. while ((c = getchar()) != EOF) {
  8. if (c == '"' && c == oc)
  9. quote = !quote;
  10. oc = c;
  11. putchar((c != ',' || quote) ? c : '|');
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement