+ All Categories
Home > Documents > Numerical Method

Numerical Method

Date post: 01-Oct-2015
Category:
Upload: avijit-babu
View: 238 times
Download: 2 times
Share this document with a friend
Description:
C programming for numerical
Popular Tags:
36
Adarsh Institute of Technology & Research Centre, Vita Numerical Methods Laboratory Journal SE Part III According to the Syllabus of Shivaji University, Kolhapur Effective From Jully 2008 1
Transcript

Numerical Methods

Adarsh Institute of Technology & Research Centre, VitaNumerical Methods

Laboratory Journal

SE Part III

According to the Syllabus of Shivaji University, Kolhapur Effective From Jully 2008

Department of civilAdarsh Institute of Technology & Research Centre, Vita

Adarsh Institute of Technology & Research Centre, Vita

Department of civil

Lab Manual

Subject : Numerical Method Page :

TITLE : Addition of Matrices

Experiment No: 1AIM

: Flow chart & C program of Addition of Matrices

A) Flow chartB) C- Program

Program for Addition of Matrices

#include

#include

void main()

{

int A[3][3],B[3][3],C[3][3],i=0,j=0;

clrscr();

printf(" Enter the element of matrix A ");

for(i=0;i


Recommended