We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad682e1 commit 1d0d992Copy full SHA for 1d0d992
curriculum_spec.md
@@ -38,7 +38,6 @@ int main() {
38
/// @ref:step1.1
39
/// Use scanf here to read in two numbers to x and y!
40
41
- sum = x + y
42
printf( "%d", sum );
43
return 0;
44
}
@@ -52,7 +51,7 @@ next: step_2.md
52
51
prev: introduction.md
53
jumpto: @ref:step1.1
54
---
55
-Given a variable declaration `int x` we can use `scanf("%d", x)` can be used to a read an integer from
+Given a variable declaration `int x` we can use `scanf("%d", x)` to a read an integer from
56
the console and assign it to x. Use that [here](@ref:step1.1) to read in two integers, compute the sum,
57
and assign it to `sum`!
58
```
0 commit comments