16 lines
179 B
C
16 lines
179 B
C
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
int x = 0;
|
|
printf("%d, %d\n", x, ++x);
|
|
float b = 123.4f;
|
|
(void) b;
|
|
|
|
float a = 0.1;
|
|
|
|
if (a > 0.1) {
|
|
printf("Ups!\n");
|
|
}
|
|
|
|
return 0;
|
|
}
|