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,851 questions

51,772 answers

573 users

How to return multiple values from a function in C

1 Answer

0 votes
#include <stdio.h>

void function(int *a, int *b, int *c) {
    *a = 12;
    *b = 98;
    *c = 375;
}

int main(void) {
    int x, y, z;
    
    function(&x, &y, &z);

    printf("x = %d\n", x);
    printf("y = %d\n", y);
    printf("z = %d\n", z);
    
    return 0;
}



/*
run:

x = 12
y = 98
z = 375

*/

 



answered Dec 26, 2020 by avibootz

Related questions

3 answers 225 views
1 answer 133 views
1 answer 84 views
4 answers 110 views
4 answers 118 views
1 answer 60 views
1 answer 77 views
...