blob: 625e1c81eaaa5ef4197c393b7858a9fd23b21f0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc
//
//
//
//Variable declaration
theta=6.5 //rotation of plane
l=2 //length
c=0.05 //concentration
//Calculations
s=(theta/(l*c))
//Result
printf("\n The Specific rotation of sugar solution is %i degree/(dm/(gm/cc)",s)
|