DEV Community

Discussion on: test.c

Collapse
 
awwsmm profile image
Andrew (he/him)

Just a tip: if you indent four spaces, or surround your code with triple backticks (```), it'll be monospaced. With triple backticks, you can specify the language, too. For example, this

```c
int main(){
    printf("hello, world");
    return 0;
}
```
Enter fullscreen mode Exit fullscreen mode

is rendered as

int main(){
    printf("hello, world");
    return 0;
}
Enter fullscreen mode Exit fullscreen mode