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 |
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What are near, far and huge pointers?
0 Answers Hexaware, Thomson Reuters, Virtusa,
What is wrong with this code?
What is the auto keyword good for?
how can i calculate mean,median,mode by using c program
application attempts to perform an operation?
What is c programing language?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Difference between goto, long jmp() and setjmp()?
What does *p++ do?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
What is the scope of static variables?