English 中文(简体)
如何包括 UNIX 中 C 中可用的基本信头文件?
原标题:How to include the basic header files which are available with C in UNIX?

When we work on Turbo C, we get all the functions and header files by default which we can include normally by #inlcude eg: stdlib.h, math.h

But when writing a simple program using such header files I am getting error because I m unable to include these files. Aren t these header files available by default for us to use? If yes then how to use such header files? When I used a function sqrt in "math.h" I was getting error as math.h was not getting included so I had to include it in the following command:

cc -c aaa.c -I/usr/local/ssl/include
gcc -o aaa aaa.c -I/usr/local/ssl/include -L/usr/local/ssl/lib -lcrypto -lm
./aaa

在此命令中, 第二个命令在结尾处有 < 强 > lm < / 强 >, 以包括数学 。 h

again similarly I used a function itoa() which is in stdlib.h which I am executing on a UNIX Solaris server, but it is not getting included and I am gettig error. Now I don t know how to add this header file.

问题回答

math.h 头通常被包含在内。 代码可以编译。 但是, 编译者找不到编译的二进制( 数学) 到 < strong> link , 除非您指定要这样做。 所以您必须在命令中指定 - lm 。

itoa () 不是 stdlib.h 中的标准函数, 所以不要使用它。 您可以使用 sprintf 代替 。

您的编译器应该提供命令行设置, 您可以在其中指定包含目录、 库目录等 。 如果您查看您的编译器文档, 最好这样做 。

例如,视觉工作室有一个命令开关 - 我指定包含文件夹

备选案文. 在某些情况下,它可以被指定为环境变量,例如,设置 INCLUDE=...

这一切都取决于你使用什么编译器。

默认情况下,这些是从 libc 导出的标准库函数。 它们应该以 Unix/ Linux 的任何口味提供。 您可以使用命令等检查信头文件的位置

find / -name "stdio.h" 2>/dev/null

Also make sure you link to libc using -l libc

另外,您在使用哪个编译器? 我建议您使用 gcc, 这样的话, 包含的配置已经对编译器做了, 您可以按原样使用它, 并开始运行 。





相关问题
Fastest method for running a binary search on a file in C?

For example, let s say I want to find a particular word or number in a file. The contents are in sorted order (obviously). Since I want to run a binary search on the file, it seems like a real waste ...

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

Tips for debugging a made-for-linux application on windows?

I m trying to find the source of a bug I have found in an open-source application. I have managed to get a build up and running on my Windows machine, but I m having trouble finding the spot in the ...

Trying to split by two delimiters and it doesn t work - C

I wrote below code to readin line by line from stdin ex. city=Boston;city=New York;city=Chicago and then split each line by ; delimiter and print each record. Then in yet another loop I try to ...

Good, free, easy-to-use C graphics libraries? [closed]

I was wondering if there were any good free graphics libraries for C that are easy to use? It s for plotting 2d and 3d graphs and then saving to a file. It s on a Linux system and there s no gnuplot ...

Encoding, decoding an integer to a char array

Please note that this is not homework and i did search before starting this new thread. I got Store an int in a char array? I was looking for an answer but didn t get any satisfactory answer in the ...

热门标签