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 | 31 |
Tags
- udemy
- sorting
- 인프런
- 백준
- dfs
- BFS
- C언어
- C
- BOJ
- greedy
- server
- programmers
- 따배씨
- graph
- BASIC
- DP
- Python
- Algorithm
- Algospot
- Math
- 종만북
- 생활코딩
- 따라하면서 배우는 C언어
- 정수론
- 따라하며 배우는 C언어
- Cleancode
- String
- php
- web
- JavaScript
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 9.9 이진수 변환 예제 본문
따배씨 - 따라하며 배우는 C언어
9강 함수
9.9 이진수 변환 예제
#include <stdio.h>
void print_binary(unsigned long n);
void pirnt_binary_loop(unsigned long n);
int main(){
unsigned long num = 10;
pirnt_binary_loop(num);
print_binary(num);
printf("\n");
return 0;
}
void pirnt_binary_loop(unsigned long num){
while(1){
unsigned long quotient = num / 2;
unsigned long remainder = num % 2;
printf("%ld", remainder);
num = quotient;
if (num == 0) break;
}
printf("\n");
}
void print_binary(unsigned long num){
int remainder = num % 2;
if (num >= 2)
print_binary(num / 2);
printf("%d", remainder);
return;
}
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 9.11 헤더 파일 만들기 (0) | 2021.06.03 |
---|---|
[따배씨] 9.10 피보나치 예제와 재귀 호출의 장단점 (0) | 2021.05.30 |
[따배씨] 9.8 팩토리얼 예제 (0) | 2021.05.30 |
[따배씨] 9.6 재귀 호출 ~ 9.7 재귀호출과 스택 (0) | 2021.05.30 |
[따배씨] 9.5 지역 변수와 스택 Stack (0) | 2021.05.30 |
Comments