blob: 7e08302bdc1dd9027bc542683c0ddb0775d62c44 (
plain)
1
2
3
4
5
6
7
8
9
|
//ques-16.6
//Calculating order of a reaction
clc
t1=50;//half-life initially(in minutes)
t2=25;//new half-life (in minutes)
//a2=a1/2
//t1/t2=(a2/a1)^n-1
n=0;
printf("Reaction is of %d order.",n);
|