0
Tongue C
the correct solution is in the C compiler in a separate application: #include <stdio.h> int main() { int price = 12; printf("price:$%d", price); returns 0; } As a result, I get: Price: $12 And here, on sololearn, it is still written that I did not write the code correctly, who faced this
2 ответов
+ 3
The bug is returns. It's return 0; and not returns 0;
0
Thenk coped 👍