Skip to content

Commit d26ffa7

Browse files
committed
refactor
1 parent 7637b45 commit d26ffa7

File tree

345 files changed

+1417
-1417
lines changed

Some content is hidden

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

345 files changed

+1417
-1417
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
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>
55
#include <conio.h>
66

7-
// // Main Function Start
7+
// Main Function Start
88
int main()
99
{
1010

@@ -13,4 +13,4 @@ int main()
1313
getch();
1414
return 0;
1515
}
16-
// // Main Function End
16+
// Main Function End
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
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>
55
#include <conio.h>
66

7-
// // Main Function Start
7+
// Main Function Start
88
int main()
99
{
1010

@@ -13,4 +13,4 @@ int main()
1313
getch();
1414
return 0;
1515
}
16-
// // Main Function End
16+
// Main Function End
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
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>
55
#include <conio.h>
66

7-
// // Main Function Start
7+
// Main Function Start
88
int main()
99
{
1010

@@ -13,4 +13,4 @@ int main()
1313
getch();
1414
return 0;
1515
}
16-
// // Main Function End
16+
// Main Function End
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
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>
55
#include <conio.h>
66

7-
// // Main Function Start
7+
// Main Function Start
88
int main()
99
{
1010

@@ -13,4 +13,4 @@ int main()
1313
getch();
1414
return 0;
1515
}
16-
// // Main Function End
16+
// Main Function End
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
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
55
#include <stdio.h>
66
#include <conio.h>
77

8-
// // Main Function Start
8+
// Main Function Start
99
int main()
1010
{
1111

@@ -14,4 +14,4 @@ int main()
1414
getch();
1515
return 0;
1616
}
17-
// // Main Function End
17+
// Main Function End
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
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
55
#include <stdio.h>
66
#include <conio.h>
77

8-
// // Main Function Start
8+
// Main Function Start
99
int main()
1010
{
1111

@@ -14,4 +14,4 @@ int main()
1414
getch();
1515
return 0;
1616
}
17-
// // Main Function End
17+
// Main Function End
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
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
55
#include <stdio.h>
66
#include <conio.h>
77

8-
// // Main Function Start
8+
// Main Function Start
99
int main()
1010
{
1111

@@ -14,4 +14,4 @@ int main()
1414
getch();
1515
return 0;
1616
}
17-
// // Main Function End
17+
// Main Function End
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
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
55
#include <stdio.h>
66
#include <conio.h>
77

8-
// // Main Function Start
8+
// Main Function Start
99
int main()
1010
{
1111

@@ -14,4 +14,4 @@ int main()
1414
getch();
1515
return 0;
1616
}
17-
// // Main Function End
17+
// Main Function End
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
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
55
#include <stdio.h>
66
#include <conio.h>
77

8-
// // Main Function Start
8+
// Main Function Start
99
int main()
1010
{
1111

@@ -14,4 +14,4 @@ int main()
1414
getch();
1515
return 0;
1616
}
17-
// // Main Function End
17+
// Main Function End
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
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
55
#include <stdio.h>
66
#include <conio.h>
77

8-
// // Main Function Start
8+
// Main Function Start
99
int main()
1010
{
1111

@@ -14,4 +14,4 @@ int main()
1414
getch();
1515
return 0;
1616
}
17-
// // Main Function End
17+
// Main Function End

0 commit comments

Comments
 (0)