在這裡,我們將看到基於傳回值和參數的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
Here this function is not taking any input argument, but its return type is int. So this returns a value.
#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中文網其他相關文章!