is compiler do read the data line by line or not.
??
Answers were Sorted based on User's Feedback
both compiler and interpreter read the program line by line only
the main deference says
when interpreter read the line it compile and show error hand to hand,
but in case of compiler if it finds an error it points to that error and go for checking further program lines...
and in the end it show all error containing the program
reply me if i am wrong
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / pratheepmanikandan
yes.the compiler read a data line by line.
| Is This Answer Correct ? | 8 Yes | 6 No |
Answer / parekh nirav
no, the compilor does not read the data by line but it
convets the inputed code in the computer understable
langauge i.e ine the hexadecimal code & then in binary code.
Then the data of the functions that are present in the
library are accessed.
IF this is not correct then plz send me the correct ans on:
www.parekhnirav@yahoo.com
| Is This Answer Correct ? | 0 Yes | 2 No |
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
int x=5; printf("%d%d%d",x,x<<2,x>>2);
what is the self-referential structure?
Explain the difference between strcpy() and memcpy() function?
wat is the meaning of c?
What is %d used for?
Whats s or c mean?
write a program to find the sum of the array elements in c language?
24 Answers ICT, Infosys, Wipro,
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
What is nested structure with example?
Write a program to exchange two variaables without temp
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a