달력

12

« 2024/12 »

  • 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

  1 #include<stdio.h>

  2

  3 void ccc(int a)

  4 {

  5     printf("ccc : %d\n", a);

  6 }

  7

  8 void (*bbb(int a))(int){

  9

 10     printf("bbb : %d\n", a);

 11     return ccc;

 12 }

 13

 14 void (*aaa(void (*(func)(int))(int), int a))(int)

 15 {

 16     printf("aaa : %d\n",a);

 17     a += 10;

 18     return func(a);

 19 }

 20

 21 int main()

 22 {

 23     aaa(bbb,10)(30);

 24     return 0;

 25 }

 26

 27



:
Posted by НooпeУ


Code Start Code End