|
@@ -1,9 +1,12 @@
|
|
|
#include <stdio.h>
|
|
|
+#include <sys/stat.h>
|
|
|
|
|
|
int main(int, char**)
|
|
|
{
|
|
|
- // This is a comment :^)
|
|
|
- printf("Hello friends!\n");
|
|
|
- mkdir("/tmp/xyz", 0755);
|
|
|
+ for (int i = 0; i < 3; ++i) {
|
|
|
+ // This is a comment :^)
|
|
|
+ printf("Hello friends!\n");
|
|
|
+ mkdir("/tmp/xyz", 0755);
|
|
|
+ }
|
|
|
return 0;
|
|
|
}
|