inflearn logo
Course

Course

Instructor

demian824's Posts

demian824 demian824

@demian824

Reviews Written
-
Average Rating
-

Posts 4

Q&A

이 후 공부과정.

감사합니다. 처음으로 프로그래밍언어를 끝까지 공부했던 것 같습니다. 개인 사정으로 인하여 늦은 나이에 다시 프로그래밍을 시작하는데 끝까지 할 수 있게 도와주셔서 감사합니다.

Likes
0
Comments
2
Viewcount
417

Q&A

do while 연습문제 질문

감사합니다. 다시 보니 이해가 되었습니다. 어제 너무 급하게 공부하여 이해를 못한거 같아요 . 정말 감사합니다.

Likes
1
Comments
2
Viewcount
229

Q&A

<boost/asio.hpp> 문제

재설치 후에 실행이 잘됩니다. 감사합니다.

Likes
0
Comments
2
Viewcount
523

Q&A

연습문제 답안 질문.

맞게 코딩했는지 궁금하여 올립니다. #include #include using namespace std; int main() { unsigned char option_viewed = 0x01; unsigned char option_edited = 0x02; unsigned char option_liked = 0x04; unsigned char option_shared = 0x08; unsigned char option_deleted = 0x80; unsigned char my_article_flags = 0; if (my_article_flags & option_viewed) {cout else {cout if (my_article_flags | option_liked) {cout else {cout if (my_article_flags ^ option_liked) {cout else {cout if (my_article_flags & option_deleted) {cout else {cout /*cout (option_viewed) cout (option_edited) cout (option_liked) cout (option_shared) cout (option_deleted) cout (my_article_flags) my_article_flags |= option_viewed; cout (my_article_flags) my_article_flags |= option_liked; cout (my_article_flags) my_article_flags ^= option_liked; cout (my_article_flags) my_article_flags &= option_deleted; cout (my_article_flags) return 0; }

Likes
2
Comments
3
Viewcount
398