Resource icon

Are you needing to learn C!!! 2015-03-27

Status
Not open for further replies.

Ian Rogers

User Extraordinaire
Forum Supporter
Most Helpful Member
Ian Rogers submitted a new article:

https://www.electro-tech-online.com/articles/are-you-needing-to-learn-c.711/ -
compiling C sucsessfully


https://www.electro-tech-online.com/articles/are-you-needing-to-learn-c.711/
 
Last edited:
The links are generated by ETO... Just done them manually!!!!
 
Please comment and ask for specific errors!!! If you have had a real corker of an error ( pointer errors are the worst, I'll get to that.. )
 
is it possible to return more than one value from a function:
int add(int x,int y)
{
return x+y;
}
//The above function returns value of x+y. is it possible the function could returns value of x-y, x/y with x+y at the same time .for example-

int add(int x,int y)
{
return x+y;
return x-y;
return x/y;
}
 
Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…