Latest Posts

C program that read two numbers and calculate addition,subtraction ,multiplication division.C program that read two numbers and calculate addition,subtraction ,multiplication division.

// this is a C program that read two numbers and calculate addition,subtraction ,multiplication division.#include#include    int a;    float x,y;void input();void input(){    printf("Enter 1st number:");     scanf("%f",&x);    printf("Enter 2nd number:");     scanf("%f",&y);   }void main(){    for(…

Continue Reading »
19Jul2012

C program that read radius of circle and display areaC program that read radius of circle and display area

// this is a C program that read radius of circle and display area. #include #include   void main() {     float r;     float pi=3.14;    clrscr();      printf("Enter value of radius :");      scanf("%f",&r);      printf("The area of the cicle is %f.",pi*r*r);    getch(); } …

Continue Reading »
19Jul2012

How to get Facebook notification via RSSHow to get Facebook notification via RSS

First you should be logged in facebook. If you are not logged in, click here to log in www.facebook.com. Then click on notification button beside the search bar. Click see all notification or click http://www.facebook.com/notifications .   …

Continue Reading »
18Jul2012
 
Top