answersLogoWhite

0

What else can I help you with?

Related Questions

Why do you need compilers?

we need compiler to run the programme. compiler will check the error in the problem. compiler can check the error with the help of run time compiler. they can be static or dynamically.


What is the MinGW compiler mostly used for?

MinGW compiler is mostly used for compiling native Microsoft Windows applications. It carries a set of freely distributable header files and static import libraries to enable the use of the Windows API.


Public static void main?

"Public" means that anyone can call the method "static" means that that it will not change "void" means that it will not return any value "main" is the actual name that the compiler looks for to run the program I hope this helps.


How many types of compiler naming in list?

cross compiler . hybird compiler . post compiler. ideal compiler. intelligence compiler.


What is the difference between initialisation and definition in C programming?

Variable-declaration is: extern int x; extern double y; extern char a; Variable-definition is: int x; static double y; auto char a; Variable-definition with initialization is: int x = 1; static double y= 2.3; auto char a = 'w';


What is DML Compiler?

What is difference between Compiler and DML Compiler


Why public is used in the main method?

Because the compiler requires it. The main method has tohave the signaturepublic static void main(String[])Otherwise the compiler will not recognize it as the main method (and will give a compile error).Also, if the method wasn't public, then it would not be accessible outside of the class, so couldn't be called!


What are the difference between a compiler design and a compiler?

In Compiler there is no design word ,whereas in compiler design there is design word


What are the responsibilities of a compiler?

What are the responsibities of a compiler


What are the four types of grammars used in compiler?

-Single pass compiler -Multi pass compiler -Cross compiler -Optimizing compiler


It is possible to build a C compiler on top of a C compiler?

It is possible to build a C compiler on top of a C compiler. From the directory, run the shell script.


Why you call as cousins of compiler?

"Cousins" of the compiler are those things related to the compiler, and may or may not be part of the compiler. This includes: preprocessors, assemblers, linkers, and interpreters.