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 ab4c4b5 commit f0a20cbCopy full SHA for f0a20cb
C/15_cProgramming.c
@@ -0,0 +1,30 @@
1
+
2
+// Even moar math.
3
4
+#include <stdio.h>
5
+#include <stdlib.h>
6
7
8
+int main()
9
+{
10
11
+ int pageViews = 0;
12
13
+ pageViews = pageViews + 1;
14
+ printf("Page views: %d \n", pageViews);
15
16
17
18
19
20
+ float balance = 1000.00;
21
22
+ balance *= 1.1;
23
+ printf("Balance: %f \n", balance);
24
25
26
27
28
29
+ return 0;
30
+}
0 commit comments