|
http://www.jindent.com |
Previous: Ellipses
|
Next: QuestionsMarks
|
| Space before semicolons |

|
int·x·=·0·; callMethod(x)·; |
|
int·x·=·0; callMethod(x); |
| Space before semicolons of for statements |

for statements or not.|
for·(int·i=0·;i<n·;i++)·{ ... } |
|
for·(int·i=0;i<n;i++)·{ ... } |
| Space after semicolons of for statements |

for statements or not.|
for·(int·i=0;·i<n;·i++)·{ ... } |
|
for·(int·i=0;i<n;i++)·{ ... } |
| Do not insert spaces into empty for statements |

for statements or not.|
for·(·;·;·)·{ ... } |
|
for·(;;)·{ ... } |