✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що повертає функція:int atoi(char s[]) /* char* s */ {int i,n=0; for (i=0;s[i]>’0’ && s[i]<’9’;i++) n=n*10+(s[i]-‘0’); return n;}