티스토리 뷰
반응형
/******************************************************************************
Online C Compiler.
Code, Compile, Run and Debug C program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <stdio.h>
int func(int, int);
int func2(int, int);
int func(int x, int y){
return x+y;
}
int func2(int x, int y){
return x*x+y*y;
}
int main(void)
{
int result1, result2;
int (*ptrFunc)(int, int); //함수 포인터 선언
int (*ptrFunc2)(int , int); //함수 포인터 선언
ptrFunc = func; //포인터값 넣기
ptrFunc2 = func2;
result1 = (*ptrFunc)(90,20); //명시적 역참조를 통하여 func() 호출
result2 = (*ptrFunc2)(20,20); //명시적 역참조를 통하여 func2() 호출
printf("result1 = %d result2 =%d\n", result1, result2);
return 0;
}
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- spring error #
- ''찾기
- 인텔리제이
- 정규식 숫자만
- 계좌번호정규식
- IntelliJ #gradle #tomcat #spring #springmvc
- JSON파싱
- JSON
- no getter for property named
- js
- Failed to load resource: the server responded with a status of 404 (Not Found)
- 정규식
- jQuery
- selectbox
- Regex
- 엑셀다운로드
- mybatis
- 공백찾기
- 정규식 특수문자
- POI EXCEL
- poi 엑셀
- JSON날짜
- SpringXmlModelInspection
- spring 엑셀
- Spring
- PageNotFound - No mapping for GET
- 정규식 한글만
- select제어
- poi
- 이메일 정규식
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함