Skip to content

Commit 9fce416

Browse files
2 parents 764be66 + d890155 commit 9fce416

File tree

9 files changed

+5
-5
lines changed

9 files changed

+5
-5
lines changed

1_hello_world.c renamed to 01_hello_world.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
void main () {
44
printf("Hello World!");
55
return 0;
6-
}
6+
}

2_variables.c renamed to 02_variables.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ int main() {
1111
printf("%f\n", myFloatNum);
1212
printf("%c\n", myLetter);
1313
return 0;
14-
}
14+
}

3_data_types.c renamed to 03_data_types.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ int main (){
1010
printf("%c\n" , model);
1111

1212
return 0;
13-
}
13+
}

4_constant_variables.c renamed to 04_constant_variables.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ int main() {
99
printf("%c\n", characters);
1010

1111
return 0;
12-
}
12+
}

5_operators.c renamed to 05_operators.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ int main() {
88
printf("%d\n", sum2);
99
printf("%d\n", sum3);
1010
return 0;
11-
}
11+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)