c_cpp 返回void函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 返回void函数相关的知识,希望对你有一定的参考价值。

#include<bits/stdc++.h>
using namespace std;

// #IMP_NOTES #Functions
// In void function return can be used to get out of the function
// Maybe used to get out of recursion if needed

void func(int n){
    if(n>0){
        cout<< n;
    }else{
        return;
    }
}

int main(){
    int n;
    cin>>n;
    func(n);
}

以上是关于c_cpp 返回void函数的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp C ++模板强制使用函数返回值。

c_cpp 将多维表从C函数返回到lua

c_cpp c中的void指针练习

c_cpp 来自void指针的hash数据

c_cpp 如何将结构用作函数返回类型或函数的参数? - 来自https://playground.arduino.cc/Code/Struct

c_cpp 在c中设置并获得void *