Skip to content
Merged
2 changes: 1 addition & 1 deletion 1_hello_world.c → 01_hello_world.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
void main () {
printf("Hello World!");
return 0;
}
}
2 changes: 1 addition & 1 deletion 2_variables.c → 02_variables.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ int main() {
printf("%f\n", myFloatNum);
printf("%c\n", myLetter);
return 0;
}
}
2 changes: 1 addition & 1 deletion 3_data_types.c → 03_data_types.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ int main (){
printf("%c\n" , model);

return 0;
}
}
2 changes: 1 addition & 1 deletion 4_constant_variables.c → 04_constant_variables.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ int main() {
printf("%c\n", characters);

return 0;
}
}
2 changes: 1 addition & 1 deletion 5_operators.c → 05_operators.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ int main() {
printf("%d\n", sum2);
printf("%d\n", sum3);
return 0;
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.