Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- recursion
- scrapy
- tensorflow
- 딥러닝
- HelloWorld
- 코딩더매트릭스
- 주식분석
- C언어
- hadoop2
- yarn
- Sort
- 선형대수
- C
- GRU
- collections
- NumPy
- 하이브
- graph
- 그래프이론
- 텐서플로
- RNN
- 알고리즘
- Java
- effective python
- python
- 하둡2
- codingthematrix
- hive
- 파이썬
- LSTM
Archives
- Today
- Total
목록쇼트서킷 (1)
EXCELSIOR
[C] Chap05 - 연산자 (응용)
Chap05 - 연산자(응용)5.1 sizeof 연산자sizeof 연산자는 피연산자의 자료형에 대한 크기 를 구하는 연산이다. 따라서, sizeof(5) 라는 연산은 size(int) 연산과 같으며 결과는 int형의 크기인 4가 된다. // opsize01.c #include int main(void){ int nData = 10; // sizeof 연산자의 피연산자는 자료형이다. printf("%d, %d, %d\n", sizeof(5), sizeof(nData), sizeof(int)); printf("%d, %d\n", sizeof('A'), sizeof(char)); printf("%d, %d\n", sizeof(123.45F), sizeof(123.45)); // 연산식 결과값의 자료..
C&C++/C - Programming
2018. 5. 3. 11:03