Skip to content

Commit b282759

Browse files
Update CONTRIBUTING.md
1 parent c3b024b commit b282759

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,16 @@ I take documentation very seriously and each and every function/implementation i
120120
Examples of Good Documentation
121121

122122
```c
123+
//Including header files
124+
#include <stdio.h>
123125
// A function performing product of 2 numbers
124126
void main(){
125127
//given 2 hard coded numbers
126128
int a = 30;
127129
int b = 2;
128130
int prod = a*b; //multiply
129131
printf("Product: %d",&prod); //print result
132+
}
130133
```
131134

132135
## Drafting a Pull Request

0 commit comments

Comments
 (0)