Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use the powerful CumberCraft + Compiler on Linux system

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

In this issue, the editor will bring you about how to use the powerful Cmax Candle + compiler on the Linux system. The article is rich in content and analyzes and describes for you from a professional point of view. I hope you can get something after reading this article.

In the process of compilation, it is found that the C++ compiler is a very powerful Cmax Candle + compiler, which is characterized by high speed and high space efficiency. Its version supports 92.73% of the standardized C++, which greatly supports the CPU optimization work.

If you have two or a few C source files, you can also easily compile, link, and generate executables using GCC. For example, suppose you have two source files, main.c and factorial.c, and now you want to compile and generate a program for calculating factorials.

List main.c

# include # include int factorial (int n); int main (int argc, char * * argv) {int n; if (argc < 2) {printf ("Usage:% s n", argv [0]); return-1;} else {n = atoi (argv [1]); printf ("Factorial of% d is% d.", n, factorial (n));} return 0;}

GCC can be used to compile both C programs and C++ programs. Generally speaking, the C compiler determines whether it is a C program or a C++ program by the suffix name of the source file. In linux, the C source file has the suffix .c, while the C++ source file has the suffix .C or .cpp.

However, the gcc command can only compile C++ source files, not automatically connect to the libraries used by C++ programs. Therefore, the C++ + command is usually used to complete the compilation and connection of the C++ program, and the program will automatically call gcc to achieve compilation. Suppose we have a C++ source file (hello.C) as follows:

# include void main (void) {cout

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report