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 |
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
what is a static function
What is the explanation for cyclic nature of data types in c?
How can I read and write comma-delimited text?
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
Why cd or dvd are round why not square.
why we are using float in C
Why double pointer is used in c?
Why do we use pointer to pointer in c?
Write a program to print "hello world" without using a semicolon?
why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .