Posts

Showing posts from March, 2012

How to change name of start button in xp

Step 1 - Modify Explorer.exe File In order to make the changes, the file explorer.exe located at C:\Windows needs to be edited. Since explorer.exe is a binary file it requires a special editor. For purposes of this article I have used Resource Hacker. Resource HackerTM is a freeware utility to view, modify, rename, add, delete and extract resources in 32bit Windows executables and resource files (*.res). It incorporates an internal resource script compiler and decompiler and works on Microsoft Windows 95/98/ME, Windows NT, Windows 2000 and Windows XP operating systems. get this from h**p://delphi.icm.edu.pl/ftp/tools/ResHack.zip The first step is to make a backup copy of the file explorer.exe located at C:\Windows\explorer. Place it in a folder somewhere on your hard drive where it will be safe. Start Resource Hacker and open explorer.exe located at C:\Windows\explorer.exe. The category we are going to be using is "String Table". Expand it by clicking the plus sign then navig

c code for SPI calculation

#include #include void main() { int i,credit[10],credit1,sum=0,t_credit=0; float grade[10],num,spi; char sub[10],name; clrscr(); for(i=0;i<3;i++) { printf("Enter Name of subject %d :=> ",i); scanf("%s",&name); sub[i]=name; printf("Enter Grade of subject %c :=> ",sub[i]); scanf("%f",&num); grade[i]=num; printf("Enter credit of subject %c :=> ",sub[i]); scanf("%f",&credit1); credit[i]=credit; } for(i=0;i<3;i++) { sum=sum+(grade[i]*credit[i]); t_credit=t_credit+credit[i]; } spi=(sum)/(t_credit); printf("Spi is :=> %f",spi); getch(); }