일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- html object
- git flow
- html multimedia
- #1차원배열
- docker example
- html code
- mac terminal command
- #android activity
- #2차원배열
- relative path
- html youtube
- html id
- #binary
- 하이퍼레저패브릭
- 토큰경제
- #다차원포인터
- #자바상속#자바이즈어#is~a
- #3차원배열
- html plug-in
- html video
- hyperledger transaction
- #bubbleSort
- html5 new tag
- html charset
- #C++ 연산자함수오버로딩
- #성적관리프로그램
- border-box
- #CallByAddress
- #C++ has~a
- #JAVASCRIPT
- Today
- Total
목록#binary (2)
A sentimental robot
class A { } public class Day3 { public static void main(String[] args) { A a = new A(); System.out.println(a); // a의 16진수 주소값 System.out.println(a.hashCode()); // 10진수 주소값 int n1 = 1234; System.out.println(Integer.toBinaryString(n1)); // 10진수를 2진수로 int n2 = 0x1234; System.out.println(Integer.toBinaryString(n2)); // 16진수를 2진수로 } } public class Day3 { static void func01(int n) { String s1 = Intege..
#include #pragma warning (disable:4996) typedef struct student { char name[10]; int age; }STU; void main() { //2진(binary)입출력 함수 FILE *fp; STU stu={"batman",30}; STU buf; fp=fopen("c.txt","rb"); // b를 붙히면 binary란 뜻을 가진다. fprintf(fp,"%s %d\n",stu.name,stu.age); fwrite(&stu,sizeof(STU),1,fp); fread(&buf,sizeof(STU),1,fp); fclose(fp); printf("%s %d\n",buf.name,buf.age); //콘솔창에 batman 30 출력 } #includ..