Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

How to parse string to multiple unsigned long numbers in C

1 Answer

0 votes
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>

int main()
{
    const char *p = "3122 2345322 53223 5987283";
    char *end;
    for (unsigned long n = strtoul(p, &end, 10); p != end; n = strtoul(p, &end, 10)) {
        p = end;
        if (errno == ERANGE) {
            printf("range error");
            errno = 0;
        }
        printf("n = %lu\n", n);
    }
}
 
/*

run:

n = 3122
n = 2345322
n = 53223
n = 5987283

*/

 



answered Jul 20, 2018 by avibootz

Related questions

2 answers 241 views
1 answer 135 views
1 answer 202 views
1 answer 56 views
1 answer 64 views
1 answer 84 views
...