Skip to content

Commit 7637b45

Browse files
committed
refactor
1 parent 9533918 commit 7637b45

File tree

118 files changed

+118
-118
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+118
-118
lines changed

01_basic_input_output/01_print_c_programming.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C program to print C Programming on screen
1+
// // C program to print C Programming on screen
22

33
// Header files
44
#include <stdio.h>

01_basic_input_output/02_use_of_newline_char.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C program to print C in first line and Programming in the second line.
1+
// // C program to print C in first line and Programming in the second line.
22

33
// Header files
44
#include <stdio.h>

01_basic_input_output/03_print_in_double_quotes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C program to print "C Programming" in Double Quotes
1+
// // C program to print "C Programming" in Double Quotes
22

33
// Header files
44
#include <stdio.h>

01_basic_input_output/04_print_in_single_quotes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C program to print "C Programming" in Single Quotes
1+
// // C program to print "C Programming" in Single Quotes
22

33
// Header files
44
#include <stdio.h>

01_basic_input_output/05_use_of_escape_chars.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C program to print following String :-
1+
// // C program to print following String :-
22
// 👉 Output => " Hello, this is forward slash (/) , this is back slash (\) , this is single quote (') and this is double quotes (") "
33

44
// Header files

01_basic_input_output/06_print_forward_slash.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C program to print single Forward Slash (/) on screen
1+
// // C program to print single Forward Slash (/) on screen
22
// 👉 Output => /
33

44
// Header files

01_basic_input_output/07_print_back_slash.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C program to print single Back Slash (\) on screen
1+
// // C program to print single Back Slash (\) on screen
22
// 👉 Output => \
33
44
// Header files

01_basic_input_output/08_print_double_slashes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C program to print single Back Slash (\) on screen
1+
// // C program to print single Back Slash (\) on screen
22
// 👉 Output => \\
33
44
// Header files

01_basic_input_output/09_print_new_line_char.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C program to print New line character '\n' on screen.
1+
// // C program to print New line character '\n' on screen.
22
// 👉 Output => \n
33

44
// Header files

01_basic_input_output/10_print_tab_char.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C program to print Tab character '\t' on screen.
1+
// // C program to print Tab character '\t' on screen.
22
// 👉 Output => \t
33

44
// Header files

0 commit comments

Comments
 (0)