1
edit
Changes
m
→Indenting Standards
=== Do not use tabs when indenting. ===
The tab space is interpreted different across different software and operating systems. Use normal 2 spaces to add indentation instead. Do: main() { int i = 0; if (i < 5) { printf("Hey you!\n"); } }
=== Put the pointer identifier(*) right after the target variable type. ===