Saturday, March 22, 2014

International Channels live streaming with low internet speed

To  get the  international  channels  click here  : 
                                                     
                                         International channels 

watch Indian channels live streaming with low net speed

Net speed is a big problem for all of us .we can't watch the channels for low net speed .But now you can watch all channels of Indian  with low network .I am using this links .( the video Quality may little bit of low )
clink here to get the channels  :
   
                                                                     Indian Channels

watch all the bangla Channels live streaming with low net speed

Net speed is a big problem for all of us .we can't watch the channels for low net speed .But now you can watch all channels of Bangladesh  with low network .I am using this links .( the video Quality may little bit of low )
clink here to get the channels  :    
 Bangladeshi Channels

watch T20 cricket world cup 2014 live streaming with low speed 100% sure

I face a lot of problem to watch world cup by live streaming because of my low speed internet ,but Now I can watch matches by thins websites .So I share the link .You can use this link .      
click here  :      
 sports channels 

Tuesday, March 18, 2014

find out Odd and even numbers by C programming

#include <stdio.h>
int main(){
      int num;
      printf("Enter an integer you want to check: ");
      scanf("%d",&num);
      if((num%2)==0)     
           printf("%d is even.",num);
      else
           printf("%d is odd.",num);
      return 0;
}

Get Maltification table ( Namota ) By C programming

#include <stdio.h>
#include<conio.h>
int main()
{
    int n, i;
    printf("Enter an integer to find multiplication table: ");
    scanf("%d",&n);
    for(i=1;i<=10;++i)
    {
        printf("%d * %d = %d\n", n, i, n*i);
    }
    getch () ;
    return 0;
}

Floyed tranggal by C

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

int main()
{
  int n, i,  c, a = 1;

  printf("Enter the number of rows of Floyd's triangle to print\n");
  scanf("%d", &n);

  for (i = 1; i <= n; i++)
  {
    for (c = 1; c <= i; c++)
    {
      printf("%d ",a);
      a++;
    }
    printf("\n");
  }
 getch () ;
  return 0;
}

Monday, March 17, 2014

get Fibonnaki numbers from your range by C programming

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

int main()
  {
    int max,n1,n2,i;
    printf("\n Enter a Range=");
    scanf("\n%d",&max);
    n1=0;
    n2=1;
    printf("\n%d\n%d",n1,n2);
      for(i=1;i<max;i=i+2)
       {
    n1=n1+n2;
    n2=n1+n2;
    printf("\n%d\n%d",n1,n2);
       }
    getch();
    return(0);
  }

Get Factorial of a Number by C Programming

#include <stdio.h>
#include<conio.h>
 int main()
{
 int c, n, fact = 1;
 printf("Enter a number to calculate it's factorial\n");
 scanf("%d", &n);
 for (c = 1; c <= n; c++)
 fact = fact * c;
 printf("Factorial of %d = %d\n", n, fact);
 getch () ;
 return 0;

}