#include int main() { int cierto, falso; cierto = (10 > 2); /* expresión cierta */ falso = (10 == 2); /* expresión falsa */ printf("\nCierto: %d, falso: %d.\n", cierto, falso); system("pause"); return 0; }