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 5e3709f commit 66d0813Copy full SHA for 66d0813
c/basics/constants.c
@@ -1,7 +1,7 @@
1
-// OUTSIDE SCOPE: define constants
+// outside scope: define constants
2
#define LENGTH 10
3
#define WIDTH 5
4
5
-// INSIDE SCOPE: define constants
+// inside scope: define constants
6
const int LENGTH = 10;
7
const int WIDTH = 5;
0 commit comments