
CODE 620 포인터 - 자가진단 2
·
프로그래밍/C_정보올림피아드 Language_Coder
#include int main(void) { int a; int *p = &a; scanf("%d",p); printf("%d...%d",*p/10,*p%10); }