Y
Hacker News
new
|
ask
|
show
|
jobs
by
kragen
402 days ago
You commented out your entire function body and the closing }. Also, on 32-bit platforms, it doesn't stop working at 65535.
1 comments
captaincrunch
402 days ago
just a formatting issue on my side, there were \n.
link
archargelod
401 days ago
This website eats newlines, unless you double them (one of the annoying features of markdown). You can use codeblocks by putting 4 spaces before each line:
int main() { // this should be properly formatted return 0; };
link
kragen
401 days ago
If you fix it, other people can test your code without having to fix the syntax themselves first.
link