편집자 John Jeong Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.
- 분류 댓글:
- C (7)
C, C++ 주석 ― YkhwongC, C++ 주석 ― John JeongC, C++ 주석 ― JmnoteC, C++ 주석 ― John JeongC언어 연결리스트 구현 ― 돌멩이C언어 연결리스트 구현 ― John JeongC언어 연결리스트 구현 ― 돌멩이
0000 0011 → 1111 1100 → 1111 1101
#include <stdio.h>
int main()
{
char a = 0xFD; // 1111 1101 (2진수)
printf("%d", a); // -3 (10진수)
return 0;
}