Advertisement
nmerlin

Untitled

Apr 4th, 2020
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.   unsigned char SOME_STRING[] = {0x62, 0x0a};
  6.   unsigned char another_string[] = "a\n";
  7.   printf("Hello World %s", SOME_STRING);
  8.   printf("Hello World %s", another_string);
  9.  
  10.   return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement