Google fonts are commonly used in any typography or web design. It is easier to use different styles of script fonts just by importing or embedding the code provided by Google and specify it in CSS. Usually, it is used by website designers to make their life much easier. However, the hardest part is to […]
Tutorials Portal
What Can You Do with WordPress? WordPress has been the most popular platform in terms of blogging and eCommerce. I have encountered clients in different countries and almost all of them are using WordPress for their business, blog, products or services. There might be a lot of platforms for eCommerce, like Joomla, Shopify, Magento, Etsy and […]
The Best Strategy is Content Marketing with Social Media Marketing Content Marketing and Social Media Marketing are partners in crime. But, you are not dealing with crime literally; you are dealing with productivity. These two marketing strategies just work together very well. There is no doubt about the results they have been creating. If these […]
Best Free Useful Tools for Your Website, Blog or Thesis If I have known about these tools before when I was creating our documentation for thesis, then probably I should have lessened my difficulties and anxiety at the same time. It may be easy for some to construct words out of their fruitful mind, but most […]
How to Read Guitar Tabs For the tabs, you need to follow the arrangement of eBGDAE format of the strings. e | 1st string (below) B | 2nd string G | 3rd string D | 4th string A | 5th string E | 6th string (above) You should make sure your fingers are placed perfectly […]
You don’t need to throw away all of your old and used plastic bottles. There are a lot of innovative ideas that you can do out of those. I will show you some awesome DIY projects and tutorials on how to recycle plastic bottles, bottle caps and plastic spoons in different creative ways. Let us […]
How to Learn C++ and What Makes It Different with C Programming Language? I am going to show you how to nail those C++ programming common problems that you are encountering in every programming language exercises. I found these files in my old storage, so I will be sharing these C++ programming solutions to those […]
Fibonacci sequence is simply by adding up the two numbers before it. The numbers are similarly related to Lucas Numbers which is another mathematical sequence. Problem #4 : Fibonacci //—www.skellainnovations.com—// #include<iostream> #include<conio.h> #include<windows.h> using namespace std; void gotoxy(int x, int y) { HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE); COORD pos; pos.X = x; pos.Y = y; SetConsoleCursorPosition(hConsole,pos); […]
Problem # 3: Ascending Asterisk (Christmas Tree Shape) //—www.skellainnovations.com—// #include<iostream> #include<conio.h> using namespace std; int main() { int a,b,c,n; cout<<“Enter a Number: “; cin>>n; for(a=1;a<=n;a++){ for(b=a;b<n;b++){ cout<<” “;} for(c=1;c<=a;c++){ cout<<“* “;} cout<<endl;} getch (); } //—www.skellainnovations.com—// Breakdown of Codes Problem Overview Variables n : integer > value : input number a : integer > value : 1st […]
Problem # 2: Descending Numbers (Rotated Half Triangle Shape) //—www.skellainnovations.com—// #include <iostream.h> #include <conio.h> #define ct cout void dec(int x); int main() { clrscr(); int x; ct<<“Enter a Number: “; cin>>x; dec(x); getch(); return 0; } void dec(int x) { int a,b; for(a=x;a>=1;a–) { for(b=a;b>=1;b–) { ct<<b; } ct<<endl; } } //—www.skellainnovations.com—// Breakdown of […]