What compilation do?

Answer Posted / aditya

Compilers Main work is to Coneverting Source code to Obj
(Machine code)
First it Check the Tokens, Syntex, Symentic Errors and if
it find correct it convert. If not it generate error
messege that shows on ur screen.

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of parallelize in spark?

582


What are the different file extensions involved when programming in C?

776


What is the use of gets and puts?

612


what do the 'c' and 'v' in argc and argv stand for?

656


Describe the difference between = and == symbols in c programming?

788






What is a shell structure examples?

603


Explain what header files do I need in order to define the standard library functions I use?

655


In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping

989


Is printf a keyword?

772


Can we use any name in place of argv and argc as command line arguments?

619


I need testPalindrome and removeSpace #include #define SIZE 256 /* function prototype */ /* test if the chars in the range of [left, right] of array is a palindrome */ int testPalindrome( char array[], int left, int right ); /* remove the space in the src array and copy it over to the "copy" array */ /* set the number of chars in the "copy" array to the location that cnt points t */ void removeSpace(char src[], char copy[], int *cnt); int main( void ) { char c; /* temporarily holds keyboard input */ char string[ SIZE ]; /* original string */ char copy[ SIZE ]; /* copy of string without spaces */ int count = 0; /* length of string */ int copyCount; /* length of copy */ printf( "Enter a sentence:\n" ); /* get sentence to test from user */ while ( ( c = getchar() ) != '\n' && count < SIZE ) { string[ count++ ] = c; } /* end while */ string[ count ] = '\0'; /* terminate string */ /* make a copy of string without spaces */ removeSpace(string, copy, ©Count); /* print whether or not the sentence is a palindrome */ if ( testPalindrome( copy, 0, copyCount - 1 ) ) { printf( "\"%s\" is a palindrome\n", string ); } /* end if */ else { printf( "\"%s\" is not a palindrome\n", string ); } /* end else */ return 0; /* indicate successful termination */ } /* end main */ void removeSpace(char src[], char copy[], int *cnt) { } int testPalindrome( char array[], int left, int right ) { }

2222


Why is it that not all header files are declared in every C program?

694


1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures

2749


When a c file is executed there are many files that are automatically opened what are they files?

600


Explain what does a function declared as pascal do differently?

653