Very carefully.
Notepad++ is a text editor, not a compiler. You can however, enter source code into Notepad++ and then compile it with a compiler such as GCC.
You don't. The compiler is used to compile programs, not edit them. Most source code can be edited using a standard text editor.
Coverts source code into object code
javac is the command that is used to compile Java source files.
A compiler is a comp. Program that transforms source code written in programming language into another comp. Language.the main reason to compile a program is to create an executable program...
That would depend on the compiler you were using and the file(s) you were trying to compile. Differen compilers would have different ways to run them, so you would need to know the commands for your particular compiler, if it is capable of running from the command prompt.
None. Operating system doesn't compile source programs.
Compile time is when the compiler translates your source code into computer language. Run time is when the actual program runs.
compiler is just translator it translates the our source program to equivalent langauage,so computer can easily understand and compile that program efficiently................
Compile is a verb.
No. You can compile without printing the source. Indeed, I know of no compiler that would allow a program's source to be printed while it is being compiled. They are completely separate and unrelated tasks.
First you need to create a text file containing the source code written in the C language. Then, you call the compiler to check the syntax of your source code and translate it into machine code. The exact means of calling the compiler depends on the operating system you are using and the vendor of the C compiler. For example, in some Unix systems the C compiler may be called as: cc CC xlC xlC_r aCC gcc and others ...