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
8 changes: 7 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,13 @@ <h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Tan
</div>

<!-- Till here -->


<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>Archit Gupta <span class="w3-tag w3-teal w3-round">MEC</span></h6>
<p>My profile is: github.com/Archit286</p>
<hr>
</div>



Expand Down
6 changes: 3 additions & 3 deletions problems_c_c++/ques_3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ int main(){
do{
printf("-----------------------PrintHello-------------------------------\n");
int k = n*n/n-n+n/n;
while(k++){
while(k--){
printf("\nKickstart your programming skills with C/C++\n\n");
for(int i=k;i<n;i++){
printf("C/C++ is the first language to learn because it not only helps you to strengthen"
Expand All @@ -22,9 +22,9 @@ int main(){
printf("----Register now on www.printhello.in/programming------\n\n");
printf("Classes are starting from 8th October onwards.");
break;
}
};
}
}
}while(n==4);
}while(n!=4);
return 0;
}
8 changes: 4 additions & 4 deletions problems_c_c++/ques_4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ using namespace std;
int main() {
printf("----------------PrintHello----------------\n\n");
printf("Facts about PYTHON\n");
printf("1. Python doesn't need semi column(;)\n")
printf("2. They don't need brackets"{}\n");
printf("3. They work on indentation\n") \;
printf("4. Python helps you to make project in AI, ML, Computer Vison.\n\n");
printf("1. Python doesn't need semi column(;)\n");
printf("2. They don't need brackets{}\n");
printf("3. They work on indentation\n");
printf("4. Python helps you to make project in AI, ML, Computer Vison.\n\n");
printf("Learn this amazing IEEE ranked #1 Language with us\nRegister Now on\nwww.printhello.in");
return 0;
}