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 define set value and return struct from function in C

1 Answer

0 votes
#include <stdio.h>
 
struct point 
{ 
    int x; 
    int y; 
};
 
struct point createpoint(int x, int y);

int main(void)
{
    struct point p1; 
    
    p1 = createpoint(13, 7);

    printf("p1.x = %d p1.y = %d", p1.x, p1.y);
    
    return 0;
}

struct point createpoint(int x, int y) 
{ 
    struct point p; 

    p.x = x; 
    p.y = y; 

    return p; 
} 

/*
run:
 
p1.x = 13 p1.y = 7

*/

 



answered Nov 27, 2015 by avibootz

Related questions

1 answer 306 views
1 answer 150 views
1 answer 191 views
1 answer 135 views
2 answers 272 views
2 answers 257 views
257 views asked Jun 13, 2015 by avibootz
3 answers 193 views
193 views asked May 14, 2021 by avibootz
...