Where can I find the compiled content of the mobile version of the C language compiler?
Save location:
C language compiler mobile version usually saves the compiled content in the following location:
- Built-in storage: /data/data/[compiler application package name]/files/
-
External storage (if available): /storage/emulated/0 /[Compiler application package name]/files/
Detailed steps:
- Open the file manager of your phone.
- Navigate to one of the above save locations.
- Looks for files with the following extensions:
-
Executable files: .out
-
Assembly files : .s
-
Target file: .o
##Note:
##actual The save location may vary between compilers.
- Some compilers may use a different extension or save to a different location.
- If the compiler application package name is unknown, it can be found in the phone settings.
-
The above is the detailed content of Where can I find the content saved in the mobile version of the C language compiler?. For more information, please follow other related articles on the PHP Chinese website!