Showing posts with label series. Show all posts
Showing posts with label series. Show all posts

Wednesday, February 18, 2015

C program to find the sum of series 1 2 4 5 7 8

C program to find the sum of series 1/2+4/5+7/8+......

#include<stdio.h>
#include<conio.h>


void main()
{
int i,n;
clrscr();
float sum=0,x,a=1;

printf("1/2+4/5+7/8+......");
printf("

How many terms(ex: 1,2,3...n)?");
scanf("%d",&n);


for(i=0;i<n;++i)
{
x=a/(a+1);
sum+=x;
a+=3;
}

printf("
Sum=%f",sum);
getch();
}
Read more »

Monday, February 16, 2015

C Program to Print following series 1 4 7 10 40


#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int i,a=-1,b;
for(i=1;i<=40;i+=3)
{
     a*=-1;
     b=i;
     b*=a;
     cout<<b<<" ";
}
getch();
}
Read more »

Sunday, February 15, 2015

Master Of SEO Series Part2 Bangla



Download Now Part2 Chap1

Download Part 1
Read more »

Tuesday, February 10, 2015

C Program to print fibonacci series


#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
unsigned long n,first,second,third;
first=0;
second=1;
cout<<"How many numbers?";
cin>>n;
cout<<"Fabonacci series
"<<first<<" "<<second;

for(int i=2;i<n;++i)
{
third=first+second;
cout<<" "<<third;
first=second;
second=third;
}
getch();
}

Read more »

Thursday, February 5, 2015

CDR King M Series Firmware

This is the firmware for CDR King M-Series. You can flash this firmware in Phoenixsuite or Livesuit. This is not the stock ROM but rather this is an alternative ROM. All features are working, like the camera, wifi etc etc...






You can download the file below
DOWNLOAD THE FILE HERE

I hope this firmware help you recover your tablet. I will be adding more firmwares as I upload it selected file sharing website.
Read more »