fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a, b, c;
  5. sscanf(" quick brown fox jumps over lazy dog", "%*s%n%*s%n%*s%n", &a, &b, &c);
  6. printf("%d %d %d\n", a, b, c);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
10 17 27