Author: zakilive

27
Nov
2014

C code using Weddle’s rule

Problem: Here we have to find integration for the (1/1+x*x)dx with lower limit =0 to upper limit…

27
Nov
2014

C code using Trapezoidal Rule

Problem: Here we have to find integration for the (1/1+x*x)dx with lower limit =0 to upper limit…

27
Nov
2014

C code using Simpson’s 3/8 rule or Simpson’s three by eight rule

Problem: Here we have to find integration for the (1/1+x*x)dx with lower limit =0 to upper limit…

26
Nov
2014

C code using Simpson’s 1/3 rule or Simpson’s one third rule

Problem: Here we have to find integration for the (1/1+x*x)dx with lower limit =0 to upper limit…

25
Nov
2014

Assembly:Write a program to (a) Prompt the user (b) Read HELLO and (c) Display them down the left margin

Solution: .MODEL SMALL .STACK 100H .DATA MSG1 DB “Enter five initial : $” .CODE MAIN PROC MOV…

25
Nov
2014

Program to display a 10*10 solid box of asterisks with INT 21H and function 9H

This problem is in charles marut  assembly language book in exercise on chapter 4 …This is 11…