Advertisement
WILLYDOS_SOL

Untitled

May 17th, 2024
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | Source Code | 0 0
  1. int main(void)
  2. {
  3.     int test[2] = { 0x00, 0x01 };
  4.     printf("Array: \n");
  5.     for(int i = 0; i < sizeof(test); i++)
  6.     {
  7.         printf("%02X", test[i]);
  8.     }
  9.     printf("\n");
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement