Advertisement
Guest User

test

a guest
Mar 28th, 2015
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1. #include <cs50.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4.  
  5. #include "helpers.h"
  6.  
  7. int main (void)
  8. {
  9.     int values[5]= { 5,4,3,2,1};
  10.     sort( &values[5], 5);
  11.     printf("%i,%i,%i,%i,%i\n",values[0],values[1],values[2],values[3],values[4]);
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement