Starting an Online Store Are you looking for platforms that you could sell out your products online? Are you looking for ecommerce websites that are popular so that variety of clients will find you immediately? There are a lot of online store and blogging platforms that offer this kind of feature to people but not all […]
Tutorials Portal
How Steve Jobs Inspired People I had been watching movies and videos about Steve Jobs with different characters portraying him. In school, I have been fed up by similar IT subjects and different reaction papers about the life of Steve Jobs. I was not really that fascinated before because the old videos filming his life were […]
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 […]
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 […]
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 […]