Skip to content

Commit 9f1a369

Browse files
authored
Fix return statement formatting in c.md (#5456)
1 parent 048d79e commit 9f1a369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ int main (int argc, char** argv)
401401
error: // this is a label that you can "jump" to with "goto error;"
402402
printf("Error occurred at i = %d & j = %d.\n", i, j);
403403
end:
404-
return 0
404+
return 0;
405405
/*
406406
https://ideone.com/z7nzKJ
407407
this will print out "Error occurred at i = 51 & j = 99."

0 commit comments

Comments
 (0)