Guest User

Untitled

a guest
Dec 9th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. int f( char *p ) {
  2. int n = 0 ;
  3. while ( *p != 0 ) n = 10*n + *p++ - ‘0′ ;
  4. return n ;
  5. }
Add Comment
Please, Sign In to add comment