1. 과제 ¶
- 다음 소스의 결과값을 예상하라
#include<stdio.h> int main() { int a=1,b=2,c=3,d=4,e=5; printf("%d\n",(++a)+(b++)*(c+d)%e); return 0; }
- 다음 bitwise operation을 수행하라
- 0110 0101 ^ 1001 1010
- 1010 1101 & 1010 1010
- 1010 1111 | 1010 1001
- 0110 0101 ^ 1001 1010
- 우와, 쉽다
2.1.1. 가르친 내용(fact) ¶
- redirection: input: <, output: >
- assignment operator: == 이놈과 비슷하니까 조심하세요
- arithmetic operator(이거 모르면 초등학교로 돌아가세요)
- increment/decrement, postfix/prefix: 이거 모르면 곧바로 질문합니다. 저 자는데 깨워도 되요(물론 ~
안~못 받겠지만)
- shorthand operator (arithmetic operator + assignment operator)
- operator precedence/associativity
- bitwise operator
2.2.1. 배운 내용(fact) ¶
operator(연산자)에 대해 배웠습니다.
-expression과 statements의차이
-assignment operater (=)이 같다는 의미가 아니라는것.
-increment operator ++i는 expression이 실행되기 전, i++는 후에 1을더해준다
-decrement operator는 위와 동일하지만 1씩 빼준다
-operator precedence(우선순위) << 이건 초등학교때 배운거.
추가된 내용은 %(모듈러스?)는 *,/와 우선순위가 같다정도?
-bitwise도 배웠는데 다시 하려니까 잘모르겠네요 ㅜㅜ
-expression과 statements의차이
-assignment operater (=)이 같다는 의미가 아니라는것.
-increment operator ++i는 expression이 실행되기 전, i++는 후에 1을더해준다
-decrement operator는 위와 동일하지만 1씩 빼준다
-operator precedence(우선순위) << 이건 초등학교때 배운거.
추가된 내용은 %(모듈러스?)는 *,/와 우선순위가 같다정도?
-bitwise도 배웠는데 다시 하려니까 잘모르겠네요 ㅜㅜ