| control/if-else-or-seq-1.c - Brug af if-else. | Lektion 3 - slide 18 : 25 Program 1 |
#include <stdio.h>
int main(void) {
int i = 7, j = 7;
if (i < j)
printf("i is less than j\n");
else
printf("i is greater than or equal to j\n");
return 0;
}