Advertisement
HorcaCZ

Untitled

Oct 30th, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6. float pole[5] = { 5.0, 6.0, 7.0, 8.0, 9.0 };
  7. printf("%.1f ", pole[1]);
  8. printf("%.1f ", pole[1] + 10);
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement