WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ <h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Tan
<p>My profile is: github.com/vishnoitanuj</p>
<hr>
</div>

<div class="w3-container">
<h5 class="w3-opacity"><b>I am a pH-developers</b></h5>
<h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Rahul Goyal <span class="w3-tag w3-teal w3-round">CSE</span></h6>
<p>My profile is: github.com/RahulGoyalgit</p>
<hr>
</div>
<!-- Till here -->


Expand Down
2 changes: 1 addition & 1 deletion java-problems/print.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class print{
public static void main(String args[]){
System.out.println("Welcome to PrintHello"\n"How you all doing?");
System.out.println("Welcome to PrintHello\nHow you all doing?");
}
}
6 changes: 3 additions & 3 deletions problems_c_c++/ques_1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ char* get_company_name(){
int main() {
char *name = get_company_name();
printf("%s is the best educational gateway for every year to kickstart their coding life. Thapar Alumni "
"who gave their heart in teaching languages and prepare students for their placements now starting the best languages batches C/C++ and Python from 8th October onwards."
"\n\n%%%% not only focus on just completing the course but logic development and making awesome projects with that language is their key goal", name, name);
printf("\n\nRegister now on\nwww.printhello.in/courses");
"who gave their heart in teaching languages and prepare students for their placements now starting the best languages batches C/C++ and Python from 8th October onwards."
" \n\n%s not only focus on just completing the course but logic development and making awesome projects with that language is their key goal", name, name);
printf("\n\nRegister now on\n www.printhello.in/courses");
return 0;
}