We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3b024b commit b282759Copy full SHA for b282759
CONTRIBUTING.md
@@ -120,13 +120,16 @@ I take documentation very seriously and each and every function/implementation i
120
Examples of Good Documentation
121
122
```c
123
+//Including header files
124
+#include <stdio.h>
125
// A function performing product of 2 numbers
126
void main(){
127
//given 2 hard coded numbers
128
int a = 30;
129
int b = 2;
130
int prod = a*b; //multiply
131
printf("Product: %d",&prod); //print result
132
+}
133
```
134
135
## Drafting a Pull Request
0 commit comments