Skip to content

Commit c3b024b

Browse files
Update CONTRIBUTING.md
1 parent d8cb9ad commit c3b024b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ void main(){
125125
//given 2 hard coded numbers
126126
int a = 30;
127127
int b = 2;
128-
int prod = 30*2; //multiply
128+
int prod = a*b; //multiply
129129
printf("Product: %d",&prod); //print result
130130
```
131131

0 commit comments

Comments
 (0)