3. Визначити, що буде відображено на екрані в
ході виконання наступної програми. Пояснити,
яким чином отримано відповідний результат.
#include
#include
int func(int);
int main()
{
int a = 5;
int b = 10;
int c = 15;
a = func( b+c);
b= func( a-c);
c = func( b*a );
printf("a=%d b=%d c=%d", a,b,c);
return 0;
}
Int func(int x)
{
if ( x >= 0 )
Х= 1;
else
Х= 0;
return x;
}
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2025 SCHOLAR.TIPS - All rights reserved.