We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c88ef2 commit e40b329Copy full SHA for e40b329
0x03-debugging/1-main.c
@@ -4,11 +4,13 @@
4
* main - causes an infinite loop
5
* Return: 0
6
*/
7
+
8
int main(void)
9
{
10
int i;
11
12
printf("Infinite loop incoming :(\n");
13
14
i = 0;
15
/**
16
* while (i < 10)
@@ -17,5 +19,6 @@ int main(void)
17
19
* }
18
20
21
printf("Infinite loop avoided! \\o/\n");
22
23
return (0);
24
}
0x03-debugging/main.h
@@ -4,5 +4,6 @@
#include <stdio.h>
void positive_or_negative(int i);
+int largest_number(largest);
#endif /* MAIN_H */
0 commit comments