answersLogoWhite

0

When will su c file execute in Linux?

Updated: 8/20/2019
User Avatar

Wiki User

10y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: When will su c file execute in Linux?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the file to execute commands on DOS at the time of boot?

autoexec.bat usually in: C:\autoexec.bat


What is the difference between an executable file and a .class file?

Both are binary files but the differences between those are:- 1) we can execute an executable file while we cannot execute an object file. 2) An object file is a file where compiler has not yet linked to the libraries, so you get an object file just before linking to the libraries, so still some of the symbols or function definitions are not yet resolved which are actually present in the libraries, and that's why we cannot execute it. Once an object file is linked with the library by the compiler, then all the symbols are resolved and we get an executable file which can be executed on the appropriate platform. So basically the difference is that we get an object file when we don't link with library while executable file is with the linking phase. In gcc we can direct compiler not to link with library and so it will prepare the object file :- gcc -c test.c It will automatically create test.o object file when you try to execute it like:- ./test.o cannot execute binary file


How do you install curses header file in fedora Linux in order to use getch function in a c an c plus plus program?

dnf install ncurses-devel


Program that is executed in c but not in c?

Answer1. When you save file using extension ".c" the program executes using "C" compiler and it cannot execute any other program which is not in "C".So, we cannot execute program in "C" which is not in "C".2. When you save file using extension ".cpp" the program executes using "C++" compiler and it can execute program of "C" but it should be saved with extension ".cpp".So, There is a program which is not in "C++" can be executed in "C++" compiler.Another answerYour question is ambiguous. 1. Okay in C++ but not in C:int main (void){ cout


How do you Install oracle from DOS shell?

Just execute the name of the setup file.. You also have to give the full path.. say C:\> oracle


How do you compile a C code in MS VS c plus plus?

Just build it with F7, or execute it with F5/F5. The MS VS Compiler understands the difference between C and C++. You can name the source file as something.C, if you want.


How to find out the newest file in a folder using C language?

Platform-dependent. For linux: opendir/readdir/closedir + stat. For Windows: FindFirstFile/FindNextFile


How do you run an installer as a superuser on Ubuntu Linux?

From the command line, always use sudo. For instance:sudo sh installer.shorsudo ./installer.binNote: If you don't have (don't want to use) sudo, then just: su -c './installer'


How do you execute a c sharp application?

There are different ways to executing a C# application, depends on the "type" of the application:1) web-based applications: ASP.NET, Web services. These applications are executed by the application server, which you may not to execute them directly in any way.2) Windows services: you would "execute" them by starting the service3) Batch-typed applications (console applications), by double-clicking the exe file (file with .exe), or from command line prompt, do either "$ run theApp.exe" or $theApp.Exe


What is the name of the C compiler used by Linux?

gcc is the most common C-compiler for GNU/Linux platform.


What is runtime in c?

when we execute the program.


What is cc in Linux?

A C compiler.