I'm not sure how to pass on the variables from main() to another function. I have something like this:
main()
{
float a, b, c;
printf("Enter the values of 'a','b' and 'c':");
scanf("%f %f %f",&a,&b,&c);
}
double my_function(float a,float b,float c)
{
double d;
d=a+b+c
bla bla bla bla
How can I pass a, b and c from main to my_function? For now the program stops on scanf() and finishes straight after I put my values in.
I've seen different examples here but they didn't help me much.
scanf()'s return value before relying on the variables having new values. – unwind Nov 18 '12 at 17:25scanfbecause that function waits for the input to be done. The program exits afterscanfbecause there is no more statements to execute. And about calling a function with arguments, that's what you already do withprintfandscanf, just call your own function with the correct arguments. – Joachim Pileborg Nov 18 '12 at 17:28