Monday, June 24, 2013

How to Shutdown Windows 7 Automatically

How to Shutdown Windows 7 Automatically

Follow below steps to set up auto-shutdown in Windows 7: Go to Start and open Control Panel. Click on System and Security and open Administrative Tools and click on the Task Scheduler. From the Action menu in Task Scheduler, click "Create Basic Task..." Write a suitable task name and...

Wednesday, May 22, 2013

How to Flash Nokia Mobile with latest firmware.

How to Flash Nokia Mobile with latest firmware.

How To Use Phoenix Service Software To Update Your Nokia Phone With The Latest Firmware. Things to be kept in mind before installing Phoenix Service Software: Remove Nokia PC Suite, Nokia Software Updater, Nokia Care Suite, Nokia Modem Drivers, Nokia Connectivity Drivers and all other Nokia stuff from your system through...

Monday, May 20, 2013

How to Rename Recycle Bin in Windows XP

How to Rename Recycle Bin in Windows XP

Click Start and then Run Type regedit and press Enter. Open the HKEY_CLASSES_ROOT folder. Open the CLSID folder. Open the {645FF040-5081-101B-9F08-00AA002F954E} folder. Open the ShellFolder folder. Change the Attributes data value from 40 01 00 20 to 50 01 00 20. Once completed change the CallForAttributes dword value...

Saturday, May 11, 2013

How to  access Ubuntu[linux] files from Windows

How to access Ubuntu[linux] files from Windows

I use Windows and Ubuntu both OS in my pc. Sometimes (when needed) i use Ubuntu. When i am using Ubuntu i downloaded or copy some files there and forget to move in other drives. And when i am using  Windows i remember or i need that file...

Wednesday, May 8, 2013

Install Ubuntu Tweak 0.8.3 on Ubuntu 11.10/12.04

Install Ubuntu Tweak 0.8.3 on Ubuntu 11.10/12.04

Ubuntu Tweak is an application to config Ubuntu easier for everyone. It provides many useful desktop and system options that the default desktop environment doesn't provide. With its help, you will enjoy with the experience of Ubuntu! To install Ubuntu Tweak on Ubuntu(Press Ctrl+Alt+T) and copy the following...

Saturday, April 27, 2013

How to change the Login Screen Background in Ubuntu

How to change the Login Screen Background in Ubuntu

Do you want to change the login screen background in your ubuntu? Its really easy to change login screen background. You just have to download and install "Simple LightDM Manager" in your ubuntu. This application lets you choose and set a different image as the login screen background....
How to install Xampp in Ubuntu

How to install Xampp in Ubuntu

Xampp is free and open source cross-platform web server solution stack package, consisting mainly of the Apache HTTP Server, MySQL database and interpreters for scripts written in the PHP and Perl Programming language. Xampp previously known as Lampp. To begin the installation download xampp from official website. Now...

Thursday, April 25, 2013

Create a text file and enter “to write a good program is very time consuming job.” Create another text which contains reverse of above text.

Create a text file and enter “to write a good program is very time consuming job.” Create another text which contains reverse of above text.

#include<stdio.h> #include<conio.h> void main() {   FILE *fp,*f;   char str[]= "To write a good program is very time consuming";   int i;   fp=fopen("old.txt","w");   fputs(str,fp);   f=fopen("new.txt","w");   for(i=strlen(str);0<i;i--)     fputc(str[i],f);   fclose(fp);   fclose(f); } ...
Given a text file, create another text file deleting the following words “three”, “bad”, and “time”.

Given a text file, create another text file deleting the following words “three”, “bad”, and “time”.

#include<stdio.h> #include<conio.h> void main() {    FILE *fp;    char str;    fp=fopen("old.txt","r+");    clrscr();    while(fscanf(fp,"%s",str)!=EOF)    {       if(strcmp(str,"three")==0||strcmp(str,"bad")==0||strcmp(str,"time")==0)       {          printf("");       }     else         printf("%s ",str);  } fclose(fp); getch();...
Program to enter two 3x3 matrices and calculate the product of given matrices.

Program to enter two 3x3 matrices and calculate the product of given matrices.

#include<stdio.h> #include<conio.h> void main() { int a[3][3],b[3][3],c[3][3]; int i,j,k; clrscr(); printf("Enter the matrix A\n"); for(i=0;i<3;i++) { for(j=0;j<3;j++) { scanf("%d",&a[i][j]); } } printf("Enter the matrix B\n"); for(i=0;i<3;i++) { for(j=0;j<3;j++) { scanf("%d",&b[i][j]); } } for(i=0;i<3;i++) { for(j=0;j<3;j++) { c[i][j] = 0; for(k=0;k<3;k++) { c[i][j] += a[i][k] * b[k][j]; } }...
Pages (10)1234567 Next

 

© 2013 TechSansar. All rights resevered. Designed by Templateism

Back To Top