6 years ago
Deleted user
What is the meaning of life, the universe, and everything?
What is the meaning of life, the universe, and everything?
```
int i = 0;
for (i = 0; i < 1; ++i)
{
printf("hello world");
}
```
```cpp
int i = 0;
for (i = 0; i < 1; ++i) {}
```
6 years ago
Original
Deleted user
What is the meaning of life, the universe, and everything?
```cpp
int i = 0;
for (i = 0; i < 1; ++i) {}
```