Guest User

silence idiot

a guest
Feb 1st, 2020
792
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.39 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. float f(float x) {
  4.     return 2*x + 5;}
  5.  
  6. void main() {
  7.     float a = f(0.4230948203984029384092830498230948209384029384092383049820394820398409283409283094802398402938409283049823);
  8.     float b = f(0.4230948203984029384092830498230948209384029384092383409820394820398409283409283094802398402938409283049823);
  9.     printf("a = %.d\n", &a);
  10.     printf("b = %.d\n", &b);}
Advertisement
Add Comment
Please, Sign In to add comment