-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorial-13_file.c
49 lines (39 loc) · 963 Bytes
/
tutorial-13_file.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<unistd.h>
#include<time.h>
void TestOperations();
void RandomInt();
int main(){
TestOperations();
RandomInt();
return 0;
}
void RandomInt(){
int random;
FILE* file;
file = fopen("Random_Integer.txt", "w");
if(file == NULL){
puts("File cant open :(");
}
else{
for (int i = 0; i<=300 && !feof(file); i++){
fprintf(file, "%d\n", i);
}
}
fclose(file);
}
void TestOperations(){
char* test = "Hello World"; //Creating a test variable
FILE* file; //Creating a file variable for making file operations
file = fopen("HelloWorld.lol", "w"); //Opening/Creating "HelloWorld.lol" file
//Checking if its null or not
if(file == NULL){
puts("File cant open :(");
}
else{
fprintf(file, "%s\n", test); //Writing "Hello World" to file
}
fclose(file); //Closing the file
}