ChaturBauka

UnusualFlow.c

Jan 8th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdbool.h>
  3. #include <float.h>
  4. //start of UnusualFlow()
  5. bool UnusualFlow(float a){
  6.   if(a>FLT_MIN)
  7.     return true;
  8.   else if(a<FLT_MAX)
  9.     return true;
  10.   else
  11.     return false;
  12. }//end of unusualFlow()
Add Comment
Please, Sign In to add comment