~~printf를 리턴하는 test함수 작성
int main(
{
test();
}
에러나 경고 발생 안하면 완성
#include <stdio.h>
int (*test())(const char*, ...)
{
return printf;
}
int main()
{
printf("return printf\n");
test();
}
'언어 > 큐브인턴(Embedded)' 카테고리의 다른 글
UART LED가 정상 작동을 안 하는 경우 (0) | 2016.10.28 |
---|---|
LED on/off (0) | 2016.10.28 |
하버드 구조 VS 폰 노이만 구조 (0) | 2016.09.21 |
MCU, MIPS (0) | 2016.09.04 |
Transistor Transistor Logic = TTL (0) | 2016.09.04 |