Which function will you used to check if the given number is negative
Answers
Answered by
0
Answer:
Input a number from user in some variable say num . Check if(num < 0) , then number is negative. Check if(num > 0) , then number is positive. Check if(num == 0) , then number is zero.
Explanation:
Hope it help you
Similar questions