This problem was haunting me for the past two days and believe me it’s a real pain in the head. My Laptop Keyboard, which works without any problem stopped working all of a sudden. The keyboard was completely dead but the buttons like Wi-Fi, Bluetooth, Sound Increase/Decrease were working fine. I tried restarting, As this problem had occurred before and ... Read More »
Tag Archives: Tech
Zapya For PC : Share files over wifi in windows 7/8/8.1 Operating Systems
Zapya is one of the most downloaded and most popular app in the Android play-store and apple marketplace. Zapya is the fastest tool for cross-platform file transfer & sharing. The coolest sharing style worldwide ! The easiness to use, simplicity, speed, portablity, cross-platform compatablity, resume capablity etc makes zapya the most popular app in this sector. The content is transferred directly from ... Read More »
How to lock whatsapp in Android Easily
We all know that whatsapp is one of the most popular IM available for your mobile device and is undoubtedly an app that you can find on the hands every Android user. The text messaging and mms were completely replaced by whatsapp today. Even Facebook was affected on the triumph of whatsapp and that is the reason they jumped onto ... Read More »
How to Solve “E: can’t mount /sd card” error of external sd card in ClockworkMod (CWM) Recovery
This is one of the most common errors occurred to the newbies while flashing new ROMS to their DROID. Here is the most simple solution for fixing this error 🙂 Clockworkmod Recovery is the most popular recovery software for android and is the best buddy while flashing a custom ROM to your droid device. CWM is supported on all droids ... Read More »
5 Best Tools For Creating Impressive Online Presentations Without Any Softwares
Communicating your ideas clearly, briefly and interestingly is a very important factor in all the fields of life. Whatever your business may be, if you can’t speak out your mind to those who should hear it, you will surely fail in the way. So having a right way to share your ideas and imagination is a must have in today ... Read More »
5 Free Handy Online Tools For Making Your Site An Eye-candy For Your Readers
Web-designing is the art of developing awesome web sites which can conquer the heart and eyes of the visitors and cause their return and admiration. There are a lot of premium themes available for whatever kind of websites you want and there are even many great designers wandering in the freelance forums who can make your site an unforgettable memory ... Read More »
Fix “The program can’t start because MSVCR100.dll is missing from your computer” error on Windows 7 / win 8
“The program can’t start because MSVCR100.dll is missing from your computer” – Ever met with this statement any time. If you are a windows user, then you might have ! This is a common type of error found in windows 7 and windows 8 with any softwares games etc. This error happens because the software needs Microsoft Visual C++ Redistributable to work with and ... Read More »
C Program to Find if a year is Leap Year or not
Program: #include <stdio.h> main() { int year; clrscr(); printf("Enter a year to check if it is a leap year\n"); scanf("%d", &year); if ( year%400 == 0) printf("%d is a leap year.\n", year); else if ( year%100 == 0) printf("%d is not a leap year.\n", year); else if ( year%4 == 0 ) printf("%d is a leap year.\n", year); else printf("%d ... Read More »
Simple C program to find whether a number is an armstrong number or not
An Armstrong number of three digits is an integer such that the sum of the cubes of its digits is equal to the number itself. For example, 371 is an Armstrong number since 3**3 + 7**3 + 1**3 = 371. Algorithm: Step 1: Start Step 2: Read n Step 3: Rem=n Step 4: sum=0 Step 5: If n != 0, ... Read More »
C Program to print Pascal’s Triangle
Program : #include <stdio.h> void main() { int num,x,y,a[50][50]; clrscr(); fflush(stdin); printf("Enter the number of rows: "); scanf("%d",&num); printf("\n Pascal's Triangle of Order %d\n\n",num); for(x=0;x{ for(y=0;y<=x;y++) { if(x==y || y==0) a[x][y]=1; else a[x][y]=a[x-1][y-1]+a[x-1][y]; printf("%4d",a[x][y]); } printf("\n\n"); } getch(); } Read More »