DEV Community

shrefalshref
shrefalshref

Posted on

test.c

#c

include

int main(){
printf("hello, world");
return 0;
}

Top comments (2)

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
Collapse
 
shrefalshref profile image
shrefalshref

under training