“c Programmierung Trinary If” Code-Antworten

c Programmierung Trinary If

#include <stdio.h>

int main() {
  int age;

  // take input from users
  printf("Enter your age: ");
  scanf("%d", &age);

  // ternary operator to find if a person can vote or not
  (age >= 18) ? printf("You can vote") : printf("You cannot vote");

  return 0;
}
Oren Gruber

c Programmierung Trinary If

testCondition ? expression1 : expression 2;
Oren Gruber

Ähnliche Antworten wie “c Programmierung Trinary If”

Fragen ähnlich wie “c Programmierung Trinary If”

Weitere verwandte Antworten zu “c Programmierung Trinary If” auf C

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen