13 lines
No EOL
230 B
C
13 lines
No EOL
230 B
C
int printf(char* format, ...);
|
|
|
|
int main() {
|
|
int a = 5;
|
|
if (a == 3) {
|
|
printf("a is 3\n");
|
|
} else if (a == 4) {
|
|
printf("a is 4\n");
|
|
} else {
|
|
printf("a is not 3 or 4\n");
|
|
}
|
|
return 0;
|
|
} |