Tuesday , 19 March 2024
Home » Tag Archives: Tech

Tag Archives: Tech

Zapya For PC : Share files over wifi in windows 7/8/8.1 Operating Systems

Zapya for PC

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 »

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 »

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 »

Scroll To Top