Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C で、signed char の配列を unsigned char の配列に変換したいのですが、どうすればよいですか?
なぜ memcpy を使わないのですか?
unsigned char uChars[count]; signed char sChars[count]; memcpy(uChars, sChars, count);