What is the system() function?
system is a C/C function. The detailed explanation of the system function under the Windows operating system is mainly applied in C language. The system function needs to be added with the header file
before it can be called.
system is a C/C function. The detailed explanation of the system () function under the Windows operating system is mainly applied in C language. The system function needs to be added with the header file
Function name: system
Function: Issue a DOS command
Usage: int system(char *command);
Program example:
#include <stdlib.h> #include <stdio.h> int main(void) { printf("About to spawn and run a DOS command\n"); system("dir"); return 0; }
Another example: system("pause") can freeze the screen to facilitate observing the execution results of the program; system("CLS") can clear the screen. Calling the color function can change the foreground color and background of the console. The specific parameters are explained below.
For example, use system("color 0A"); where the 0 after color is the background color code, and A is the foreground color code. The color codes are as follows:
0=black 1=blue 2=green 3=lake blue 4=red 5=purple 6=yellow 7=white 8=grey 9=light blue A=light green B=light green C=light red D=lavender E=light yellow F=bright white
(Note: Microsoft Visual C 6.0 supports system)
The color attribute consists of two sixteen Base digits specified - the first corresponds to the background, the second to the foreground. Each number
can be any of the following values:
0 = black 8 = gray
1 = blue 9 = light blue
2 = green A = Light green
3=Light greenB=Light light green
4=RedC=Light red
5=PurpleD=Light purple
6=YellowE=Light yellow
7=White F = bright white
Recommended tutorial: "c Language Tutorial"
The above is the detailed content of What is the system() function?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Java document interpretation: Usage analysis of the currentTimeMillis() method of the System class, specific code examples are required. In Java programming, the System class is a very important class, which encapsulates some properties and operations related to the system. Among them, the currentTimeMillis method is a very commonly used method in the System class. This article will explain the method in detail and provide code examples. 1. Overview of currentTimeMillis method

The win10 system is a very easy-to-use and highly intelligent system. Its strong compatibility can ensure that the system will basically not have any problems during normal use. However, as people continue to use the win10 system, sometimes the system will also have problems. The problem of Win10 booting blue screen termination code SystemServiceException. Today I will bring you the solution to Win10 booting Blue Screen termination code SystemServiceException. If you need it, please download it quickly. Solution to win10systemserviceexception blue screen: Method 1: 1. Use Windows key + R to open Run and enter “contr

The computer system is a relatively common system process. You will often see system when viewing the process. This process simply means the computer system; however, if the system.exe process appears on the computer, it needs to be deleted in time. , this is a file generated by a Trojan horse virus. There is no exe suffix behind the real system.

Microsoft has announced the availability of System Center 2022. The latest version brings System Center Operations Manager (SCOM), Virtual Machine Manager (VMM), System Center Orchestrator (SCORCH), Service Manager (SM) and Data Protection Manager

I believe that netizens are very familiar with the Windows 7 system. Have you heard of the Windows 7 English version system? I believe that many netizens have heard about the Windows 7 English version system. However, some friends are looking for the Windows 7 English version system to download. Today I will The editor is going to share the introduction of the original version of win7 in English with everyone, so that netizens can understand the original version of win7 in English. The following is to tell you where to download the English version of Windows 7 system. The original English system of win7 has been released to MSDN for subscription download. The official English integrated version was first released, Windows7WithSP1, which is the Windows7 CD image with integrated SP1. Includes SP1 standalone for multiple languages

Step back in time to the Macintosh of the 1990s and run complete virtual installations of System 7 and MacOS 8 in a browser window. One flaw with new virtual versions of 1990s Mac software is that they run at the speed of a 2020s Mac. You're looking at a MacSE/30 or Quadra700, but everything is as fast as Apple Silicon. You can actually work in these simulated operating systems, and they can even drag documents or files in and out of macOS Monterey. But whether for some practical purposes or more likely just for pure fun, here's how

Object is the base class of all Java classes, the top of the entire class inheritance structure, and the most abstract class. Everyone uses toString(), equals(), hashCode(), wait(), notify(), getClass() and other methods every day. Maybe they don’t realize that they are methods of Object, and they don’t look at what other methods Object has. And think about why these methods should be placed in Object. 1. Introduction to JavaObject class - the super class of all classes Object is a special class in the Java class library and is also the parent class of all classes. In other words, Java allows any type of object to be assigned to the Object type

1. Introduction to System as a system class. In the java.lang package of JDK, it can be seen that it is also a core language feature of Java. The constructor of the System class is decorated with private and is not allowed to be instantiated. Therefore, the methods in the class are also static methods modified by static. The Arrays class in JAVA is a tool class that implements array operations. It includes a variety of static methods that can implement array sorting and search, array comparison, adding elements to arrays, array copying, and converting arrays into String functions. These methods have overloaded methods for all basic types. 2. Detailed explanation of knowledge points 1. The concept is relatively simple introduced in the System class in the API. We give the definition.
