当前位置:   article > 正文

C语言--C++调用C语言程序、C语言调用C++程序_c++钟调用c语言

c++钟调用c语言

1、C++中调用C语言程序

main.cpp文件 

#include <iostream>
#include "cfun.h"

using namespace std;

int main()
{
    cout << "C++ Hello world!" << endl;

    cfun();

    return 0;
}

#if 0
output
C++ Hello world!
C language Hello world!

#endif // 0
 

 cfun.c文件

#include "cfun.h"
#include <stdio.h>

void cfun(void)
{
    printf("C language Hello world!\n");
}
 

cfun.h文件

 

#ifndef __C_FUN_H_
#define __C_FUN_H_

#ifdef __cplusplus
extern "C"
{
#endif // __cplusplus

void cfun(void);

#ifdef __cplusplus
}
#endif // __cplusplus

#endif // __C_FUN_H_

 

2、C语言调用C++程序

 main.c

#include <stdio.h>
#include <stdlib.h>

int main()
{
    printf("C Hello world!\n");
    cppfun();

    return 0;
}
#if 0
output
C Hello world!
C ++ hello world.
#endif // 0

 cppfun.cpp

#include "cppfun.h"
#include <iostream>

void cppfun(void)
{
    std::cout << "C ++ hello world." << std::endl;
}
 

cppfun.h

 

#ifndef __CPP_FUN_H
#define __CPP_FUN_H

extern "C" void cppfun(void);


#endif // __CPP_FUN_H
 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/309959
推荐阅读
相关标签
  

闽ICP备14008679号