Hello to all,
I am a trying really hard to understand keywords for a rerort I have to make for my university but I don't seem to get the main idea....
There is a question and if you have any ideas there are all very very wellcome:
Whitch yould be the outcome after operating the func3 ( ), Explain ???
Best Regards from Greece
Filitsa
I am a trying really hard to understand keywords for a rerort I have to make for my university but I don't seem to get the main idea....
There is a question and if you have any ideas there are all very very wellcome:
Whitch yould be the outcome after operating the func3 ( ), Explain ???
Code:
void func1 (int a)
{
a=10;
}
int func2 (int a)
{
a=10;
return (a);
}
void func3 ( )
{
int a=2;
int b=5;
func1 (a);
b=func2 (a);
printf("a=%d, b=%d\n", a, b);
}
Filitsa
Comment