Wednesday, September 11, 2013

Alexander Graham Bell, the inventor of the telephone, never telephoned His wife or mother because they were both deaf.
Bruce Lee was so fast that they actually had to slow a film down so you could see his moves. That's the opposite of the norm.
Bruce Lee was so fast that they actually had to slow a film down so you could see his moves. That's the opposite of the norm.
It's been 12 years since the Sept. 11, 2001 terror attacks and though al Qaeda's leader, Osama bin Laden was killed more than two years ago, ...

Apple iPhone 5S & iPhone 5C: India price and features

Everything you need to know about Apple iPhone 5S and the iPhone 5C, their features and pricing in India. iPhone 5C launch in China.


Grand Masti is an upcoming Bollywood adult comedy film presented by Bharat Shah, directed by Indra Kumar and produced by Ashok Thakeria. The film is a sequel to the 2004 hit, Masti, and will feature Vivek Oberoi, Aftab Shivdasani and Riteish Deshmukh reprising their roles from the original, along with Bruna Abdullah, Karishma Tanna, Sonalee Kulkarni,Kainaat Arora,Maryam Zakaria and Manjari Fadnis amongst others.[1] Grand Masti is expected to release on 13 September 2013.[2]
BISECTION METHOD C PROGRAM


#include[stdio.h]
#include[math.h]
#define epsilon 1e-6
void main()
{
double g1,g2,g,v,v1,v2,dx;
int found,converged,i;
found=0;
printf(" enter the first guess\n");
scanf("%lf",&g1);
v1=g1*g1*g1-15;
printf("value 1 is %lf\n",v1);

while (found==0)
{
printf("enter the second guess\n");
scanf("%lf",&g2);
v2=g2*g2*g2-15;
printf(" value 2 is %lf\n",v2);
if (v1*v2>0)
{found=0;}
else
found=1;
}
printf("right guess\n");
i=1;

while (converged==0)
{
printf("\n iteration=%d\n",i);
g=(g1+g2)/2;
printf("new guess is %lf\n",g);
v=g*g*g-15;
printf("new value is%lf\n",v);
if (v*v1>0)
{
g1=g;
printf("the next guess is %lf\n",g);
dx=(g1-g2)/g1;
}
else
{
g2=g;
printf("the next guess is %lf\n",g);
dx=(g1-g2)/g1;
}
if (fabs(dx)'less than' epsilon
{converged=1;}
i=i+1;
}
printf("\nth calculated value is %lf\n",v);
}