여기에서는 반환 값과 매개 변수를 기반으로 하는 다양한 유형의 C 함수를 볼 수 있습니다.
따라서 함수는 일부 매개변수를 취하거나 전혀 취하지 않을 수 있습니다. 마찬가지로 함수는 무언가를 반환할 수도 있고 그렇지 않으면 아무것도 반환하지 않을 수도 있습니다. 그러므로 우리는 이를 네 가지 유형으로 분류할 수 있다.
#include <stdio.h> void my_function() { printf("This is a function that takes no argument, and returns nothing."); } main() { my_function(); }
This is a function that takes no argument, and returns nothing.
이 함수는 입력 매개변수를 허용하지 않으며 반환 유형은 void입니다. 따라서 아무것도 반환하지 않습니다.
#include <stdio.h> int my_function() { printf("This function takes no argument, But returns 50</p><p>"); return 50; } main() { int x; x = my_function(); printf("Returned Value: %d", x); }
This function takes no argument, But returns 50 Returned Value: 50
여기서 이 함수는 입력 인수를 사용하지 않지만 반환 유형은 int이므로 값을 반환합니다.
#include <stdio.h> void my_function(int x) { printf("This function is taking %d as argument, but returns nothing", x); return 50; } main() { int x; x = 10; my_function(x); }
This function is taking 10 as argument, but returns nothing
그러나 반환 유형은 void입니다. 따라서 아무것도 반환하지 않습니다.
#include <stdio.h> int my_function(int x) { printf("This will take an argument, and will return its squared value</p><p>"); return x * x; } main() { int x, res; x = 12; res = my_function(12); printf("Returned Value: %d", res); }
This function is taking 10 as argument, but returns nothing
여기의 함수는 모든 입력 매개변수를 받아들이고 값을 반환합니다.
위 내용은 C 함수 매개변수 및 반환 값의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!