10 lines
No EOL
158 B
C
10 lines
No EOL
158 B
C
int printf(char* format, ...);
|
|
|
|
int main() {
|
|
int a = 3;
|
|
if (a == 3) {
|
|
printf("a is 3\n");
|
|
} else {
|
|
printf("a is not 3\n");
|
|
}
|
|
} |