Advertisement
joker546645

5_3 c

Dec 7th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.36 KB | None | 0 0
  1. #include <stdio.h>
  2. void dodaj_SSE(char* tab1, char* tab2, char* tab3);
  3. int main()
  4. {
  5.  
  6.     char liczby_A[16] = { -128,-127,-126,-125,-124,-123,-122,
  7.         -121, 120,  121,  122,  123,  124,  125,  126, 127 };
  8.     char liczby_B[16] = { -3,-3,-3,-3,-3,   -3,-3,-3,
  9.         3,  3,  3,  3,  3,  3,  3,  3 };
  10.     char liczby_C[16];
  11.     dodaj_SSE(liczby_A, liczby_B, liczby_C);
  12.  
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement