首頁  >  文章  >  後端開發  >  C函數的參數和傳回值

C函數的參數和傳回值

王林
王林轉載
2023-08-27 17:49:06766瀏覽

C函數的參數和傳回值

在這裡,我們將看到基於傳回值和參數的C函數的不同類型。

因此,函數可以帶有一些參數,或不帶任何參數。同樣地,一個函數可以傳回一些東西,否則不回傳任何東西。因此,我們可以將它們分為四種類型。

  • 沒有參數和沒有傳回類型的函數。
  • 沒有參數但傳回某些東西的函數。
  • 帶有參數但不傳回任何東西的函數。
  • 既帶有參數又傳回某些東西的函數。

範例

#include <stdio.h>
void my_function() {
   printf("This is a function that takes no argument, and returns nothing.");
}
main() {
   my_function();
}

Output

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);
}

Output

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.

Example

#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);
}

Output

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);
}

Output

This function is taking 10 as argument, but returns nothing

這裡的函數接受任何輸入參數,並且傳回一個值。

以上是C函數的參數和傳回值的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除