c_cpp 在C中创建和使用自己的头文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 在C中创建和使用自己的头文件相关的知识,希望对你有一定的参考价值。

// Instructions: 

// Compilation Command: gcc mainProgram.c myLibrary.c
// Creates required object files.

// Execution Command: ./a.out

#include <stdio.h>

// Including my library
#include "myLibrary.h"

int main()
{
  int a = 4, b = 5;
  int product = multiply(a, b);
  printf("Product: %d x %d = %d\n", a, b, product);
  return 0;
}
// This file contains definitions of functions 
// declared in included header files.
// In this case, for "myLibrary.h".

#include "myLibrary.h"

// Takes 2 integers as arguments and returns their product.
int multiply(int a, int b) {
  return a*b;
}
// Declaration of my function: multiply

int multiply(int, int);

以上是关于c_cpp 在C中创建和使用自己的头文件的主要内容,如果未能解决你的问题,请参考以下文章

如何在子进程python中创建和复制文件的内容

在HDF5文件中创建和访问数据集

在 HDF5 文件中创建和访问数据集

如何在 C++ 或 C 中创建和编写索引 png 图像

c_cpp 带有类定义和结构定义的头文件。

在 C 中创建和显示链表:程序显示不正确