I\'m trying to write a code that has a lot of comparison
Write a program in “QUANT.C” which “quantifies” numbers. Read an integer “x” and test it, pro
use type parameter pattern along with when clause e.g.
switch(a) { case * when (a>1000): printf("hugely positive"); break; case * when (a>=100 && a<999): printf("very positive"); break; case * when (a>=0 && a<100): printf("positive"); break; }