Jan 10 2010

Determinant of a 3×3 Matrix

Category: C Programmingadmin @ 10:46 pm

This program will calculate determinant of a 3×3 matrix.I have used Sarrus rule for this calculation.You can download full program from here.

Tags: , ,


Jan 10 2010

Add more than 1 domains in WP

Category: Newsadmin @ 7:44 am

Domain Mirror

plugin to allow one WordPress installation to be accessed form more than one domain.

http://mcaleavy.org/code/domain-mirror/

Tags: , , ,


Oct 26 2009

Multiple Table

Category: C Programmingadmin @ 11:56 pm

This program show a multiple table

/*Exercise 4.1*/
#include<stdio.h>
int main (void)
{
  int input,i,j,ans;
  printf("Enter the number: ");
  scanf("%d",&input);
 
  for(i=1;i<=input;i++)
  {
    printf("\t(%d)\t",i);
  }
  printf("\n----------------------------------------------------------------------------------------------------");
 
 
  for(i=1;i<input+1;i++)
  {
    ans=1;
    printf("\n(%d)",i);
    for(j=1;j<=input;j++)
    {
      ans=i*j;
      printf("\t %d\t",ans);
    }
    printf("\n--------------------------------------------------------------------------------------------------");
 
  }
  printf("\n");
  return 0;
}

Download Source code & exe

Tags: , , , ,


« Previous PageNext Page »