X = Y²+Z² - (Y-X) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 2

X = Y²+Z² - (Y-X)

Please solve this in c language and give me solution

9th Dec 2021, 2:38 PM
Taufique Hashmi
1 Answer
+ 3
Taufique Hashmi Do self. We are not here to provide solutions. Hint: Take x, y, z as input and apply logic like this: int result = y * y + z * z - (y - x);
9th Dec 2021, 2:42 PM
A͢J
A͢J - avatar