Answers for "ternary operator equivalent to if statement in c?"

C
0

odd even in c with ternary operator

#include <stdio.h>
int main() {
    int num;
    printf("Enter an integer: ");
    scanf("%d", &num);
    // true if num is perfectly divisible by 2
   num % 2 == 0 ? printf("%d is even.", num); :  printf("%d is odd.", num);
    return 0;
}
Posted by: Guest on August-17-2021

Code answers related to "ternary operator equivalent to if statement in c?"

Code answers related to "C"

Browse Popular Code Answers by Language