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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,037 questions

40,797 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 114 views
1 answer 74 views
4 answers 91 views
5 answers 131 views
1 answer 70 views
...