Advertisement
DarkoreXOR

Untitled

Jun 17th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. float *p = (float[]){1.5f, 3.0f, 4.5f};
  6.  
  7. for (int i = 0; i < 3; ++i)
  8. {
  9. printf("%f\n", p[i]);
  10. }
  11.  
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement