is compiler do read the data line by line or not.
??
Answer Posted / jonu
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 |
Post New Answer View All Answers
What is the mean of function?
Why does this code crash?
how can I convert a string to a number?
What is a program flowchart?
What are header files and explain what are its uses in c programming?
write a program to concatenation the string using switch case?
What are data types in c language?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is printf () in c?
What is the purpose of scanf() and printf() functions?
What is || operator and how does it function in a program?
what is use of malloc and calloc?
Explain two-dimensional array.
Can you write the algorithm for Queue?
Give me the code of in-order recursive and non-recursive.