C Program to Check Positive Negative or Zero
Topic: C Program to Check Positive Negative Q: Write a C Program to use simple if statement to check positive negative or zero How to check for positive number A number is positive if it is greater than 0 (zero). Use simple if statement. if (number > 0) printf(“Number is positive”); What is the condition… Read More »