Friday, 1 February 2013

LIKE BOTTON FOR FACEBOOK IN HTML

Like Botton In Html For FACEBOOK

COPY THIS PASTE IN NOTEPADE AND SAVE AS LIKE.HTML




<html>
    <head>
      <title>My Great Web page</title>
    </head>
    <body>
       <iframe src="https://www.facebook.com/plugins/like.php?href=https://www.facebook.com/sunilkumardheendhwal/"
        scrolling="no" frameborder="0"
        style="border:none; width:450px; height:80px"></iframe>
    </body>
 </html>

Wednesday, 2 January 2013

How To Calculate Sum of Two numbers in C


Here I Tell You How To Calculate Sum Of two number by Using C
You Can see this Blue Colour Source Code
And Try it
I hope You Enjoy It




#include<conio.h>
#include<stdio.h>
main()
{
clrscr();
int a,b,c;
printf("Enter A\n");
scanf("%d",&a);
printf("Enter B\n");
scanf("%d",&b);
c=a+b;
printf("Sum Of A And B Is = %d",c);
getch();
}

Tuesday, 1 January 2013

How Do You Unfriend More Then One Friend At A Time

You Do Unfriend More Then One Friend At A Time
There Is Only one Way
Those I tell You Here
friends i have found a new way to unfriend your facebook friend in multiple i think this is the only best way ever ,,
so first write www.m.facebook.com on ur web browser n enter ur user name and paasword 
u will go on ur own profile (like mobile facebook view ) then 
You Find Like This Picture

You find Three White Small Row left side In  Blue Line And 
 at right side sort And in center msg, friend request . notification you can see now  click on those three white rows
then apear a box where on top
 you found Your Profile Name With Your pic Click On Them









Now On your profile view Click on Friends








then There apear a friends list, now you can see there Your friend name 

and now the main point here in front of your friends name you can See A right Click



click on them And unfriend them easily 
This is fastest way you can unfri
end them..

How To Reverse A Programme

How To Reverse A programme And Print Them Reverse And Actitual Value
For Example>
Input is 2
Output Is 21012
Or
Input Is 3
Output is 3210123
See This Blue Color Source Code





#include<iostream.h>
#include<math.h>
#include<conio.h>
class a
{
int a,b,c;
clrscr();
public:
void get();
void put();
};
void a::get()
{
cout<<"enter the value\n ";
cin>>a;
}
void a::put()
{
if(a!=0)
{
for(b=a;b>0;b--)
cout<<b;
for(b=0;b<a+1;b++)
cout<<b;
}
else
{
cout<<a;
}
}
main()
{
clrscr();
a x;
x.get();
x.put();
getch();
}