We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 465e0ef commit 0fc0c9eCopy full SHA for 0fc0c9e
3 files changed
.gitignore
@@ -1,3 +1,4 @@
1
*~
2
*'
3
*#
4
+.swp
0x03-debugging/.1-main.c.swp
12 KB
0x03-debugging/1-main.c
@@ -7,18 +7,18 @@
7
8
int main(void)
9
{
10
- int i;
+ int i;
11
12
- printf("Infinite loop incoming :(\n");
+ printf("Infinite loop incoming :(\n");
13
14
- i = 0;
15
-/**
16
- while (i < 10)
17
- {
18
- putchar(i);
19
- }
20
-*/
21
- printf("Infinite loop avoided! \\o/\n");
+ i = 0;
+
+ /* while (i < 10)*/
+ /*{*/
+ /* putchar(i);*/
+ /*}*/
+ printf("Infinite loop avoided! \\o/\n");
22
23
- return (0);
+ return (0);
24
}
0 commit comments