8 líneas
92 B
C
8 líneas
92 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int x = 42;
|
|
printf("x = %d\n", x);
|
|
return 0;
|
|
}
|