Posts

Showing posts from January, 2016

Simple and easy Notepad trick

Image
Trick 1.'' Make a dairy in Notepad" Follow the below strips. Open Notepad Write this simple word  .LOG  Save as file_name.vbs YOur dairy are ready for you  Any time when you want to note some things it's already note the date and time.      

ShortCut Keys

Image
ShortCut keys Basic ShortCut Keys Windows ShortCut Key Ms Word Ms Excel Ms Outlook

Today trick

Awesome Duplicate Photo Finder There are several programs available that locate duplicate files on your computer. After doing some research I settled on Awesome Duplicate Photo Finder and have been pretty pleased with it. Here are my initial thoughts with the program, as it relates to finding duplicate images: Pros: Free Simple to Use The program shows you the degree of similarity between items and includes a function to only search for 100% matches Cons: You can delete all duplicates or one by one, I haven’t been able to figure out how to delete a group all at once. (If you figure out how to do this, let me know!) If you’re highly technical and want to specify more settings for searching there aren’t too many It was developed years ago and appears to not be supported anymore. Go to the awesome duplicate photo finder website and download.

C programing

This animation show the execution  of simple c program. click here click on the below link. http://s.hswstatic.com/gif/c-exec.gif

Function

A programe to print line using function   #include<stdio.h>        #include<conio.h>        void line(void);        void main()        {        printf("Name\n");        line();        printf("\tAhmad ishaq \n");        line();        printf("F/Name \n");          line();          printf("\tMuhmmad ishaq\n");           line();             printf("Program\n");              line();              printf("\tBS computer science\n");               line();               printf("Session\n");             ...

A programe to convert binary into decimal using Function.

#include<conio.h> #include<stdio.h>  void  convert(int ); void main() { int num; printf("Enter a binary number(1s and 0s) \n"); scanf("%d", &num); convert(num);                                                                          getch(); }  void  convert(int num ) { int binary_val, decimal_val = 0, base = 1, rem; binary_val = num; while (num > 0) { rem = num % 10; decimal_val = decimal_val + rem * base;  num = num / 10 ; base = base * 2;  }  printf("The Binary number is = %d \n", binary_val);  printf("Its decimal equivalent is = %d \n", decimal_val);  }   Output Enter a binary number(1s and 0s) 100 The Binary number is = 100 Its decimal equivalent is =  4   ...