python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Latin Capital Letter 'E' with Circumflex (Ê)
In a C program in Windows 10, I should print the word TYCHÊ on the screen, but I cannot print the letter Ê (Hex code: \xCA):
#include <stdlib.h>
#include <stdio.h>
char *Word;
int main(i...
user3482381
Votes: 0
Answers: 3
Which is the fastest way to convert an integer to a byte array in Julia
Question 1:Which is the fastest way to convert an integer to byte array?
a = 1026
aHexStr = string(a,base = 16,pad = 4) #2 bytes, 4 chars
b = zeros(UInt8,2)
k = 1
for i in 1:2:4
b[k] = parse(UInt8,a...
Vinod
Votes: 0
Answers: 2
Understanding hexadecimal output from C pointers
I ran some C code in CodeBlocks and printed the memory address. The result was a 16 character hexadecimal. This was an exercise in the youtube tutorial on C from freeCodeCamp at 3:14:05.
https://www...
TeacherD
Votes: 0
Answers: 1
Wondering how to send HEX buffer over HTTP with only text option to send
I am trying to send a Hexadecimal command to a TV RS232 through a Global Cache HTTP to RS232 device. Global cache can also operate device with RS232 over TCP/UDP port 4999.
Global Cache has a URL on t...
ndasusers
Votes: 0
Answers: 0