20160407_장진웅_업무일지_로봇제어_시리얼제어4
#include int main(void) { int iNum1=1; char str[4]; int iNum2=2; printf("iNum1 출력: %d \n", iNum1); printf("str 출력: %d \n", str[4]); printf("iNum2 출력: %d \n", iNum2); printf("iNum1 주소 출력: %p \n", &iNum1); printf("str 주소 출력: %p \n", &str); printf("iNum2 주소 출력: %p \n", &iNum2); scanf("%s", str); printf("[%s] \n", str); printf("iNum1: %d \n", iNum1); printf("iNum2: %d \n", iNum2); return 0; }char st..
2016. 4. 11.