// // ‘);document.write(String.fromCharCode(60,47,83,67,82,73,80,84,62));
// ]]>
tricks of earning money
hey all, if you want to earn money really. then please visit my new blog http://earnmoneyonlinecourse.blogspot.com/.
here you will learn all ways of earning money and definitely this blog will be very helpful for you.
thank you
About Google AdSense
Many new bloggers starts with Google AdSense , but very few manage to make
substantial money with it. The reason is simple: CPC
ads do not work on every website.
There are two main basic requirements if you
want to make good money with Google AdSense:
1. Your blog needs to have high traffic (e.g.,
1,000 daily unique visits or more)
2. A good percentage of that traffic must come
from search engines (e.g., 70% or more).
Getting traffic from search engines is essential
because those visitors are the ones who most often
click on ads.
If you meet these two requirements, it will be just a
matter of choosing the right AdSense units and
positioning them effectively.
According to Google itself the most profitable ad
units are the 336×280 large rectangle, the 300×250
rectangle and the 160×600 large skyscraper.
As for positioning, you must be willing to hurt the
user experience a bit if you want to have a good
CTR (click-through rate). This is so because ads
blended with the content perform much better than
ads isolated in the sidebar.
The best combination is usually the 336×280 unit on
top of your posts, right below the headline.
If you want something less intrusive, try placing it
between the post and the comment section, or try
using a 160×600 unit on the sidebar.
WAP to input a number and its power then show number to the power.
Note: Use pow(n,p) function
#include<stdio.h>
#include<conio.h>
#include<math.h>
int main()
{
double n,p;
double result;
printf(“Enter the number : “);scanf(“%lf”,&n);
printf(“Enter the power : “);scanf(“%lf”,&p);
result=pow(n,p);
printf(“%.2lf to the power %.2lf is %.2lf”,n,p,result);
getch();
}
Happy New Year
This gallery contains 1 photo.
Happy new year all my lovely viewers.. Hope your all wishes will come true..
Write the above program using getchar() and gets().
#include<stdio.h>
#include<conio.h>
int main()
{
int rollno;
char gender;
char name[21];
printf(“Enter rollno : “); scanf(“%d”,&rollno);
printf(“Enter Name : “);fflush(stdin); gets(name);
printf(“Enter Gender [M/F] ? “);fflush(stdin);gender=getchar();
printf(“roll no is %d, Name is %s and Gender is %c”,rollno,name,gender);
getch();
}
Its all about ‘C’ language
WAP to input rollno, name and gender of a student and show it.
#include<stdio.h>
int main()
{
int rollno;
char gender;
char name[21];
printf(“Enter rollno : “); scanf(“%d”,&rollno);
printf(“Enter Name : “);fflush(stdin);scanf(“%[^\n]“,&name);
printf(“Enter Gender [M/F] ? “);fflush(stdin);scanf(“%c”,&gender);
printf(“roll no is %d, Name is %s and Gender is %c”,rollno,name,gender);
getch();
}
Related articles
- Simple c program (slideshare.net)


