Computer Science, asked by garvitpahwa95, 6 months ago

Write a C program for Runge kutta method of 2 order​

Answers

Answered by llSᴡᴇᴇᴛHᴏɴᴇʏll
2

Answer:

C- Program of the Runge-Kutta 2nd order method.

Problem:

dy. dx.

#include <stdio.h> #include <math.h>

scanf("%f %f %f",&x0,&l,&y0); h=(l-x0)/n;

Output of the program:

enter the value of n. enter the initial point x0, last point L and initial condition y0:

C- Program of the Runge-Kutta 2nd order method using 1D Array.

Similar questions