is compiler do read the data line by line or not.
??

Answer Posted / archana

yes compiler reads line by line then compiles

Is This Answer Correct ?    0 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above

646


Describe explain how arrays can be passed to a user defined function

605


What are c identifiers?

629


The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none

713


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

1959






What is the use of typedef in structure in c?

546


What is the use of getchar functions?

678


Is anything faster than c?

587


What are the types of operators in c?

612


Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

606


What Is The Difference Between Null And Void Pointer?

645


What does the error 'Null Pointer Assignment' mean and what causes this error?

743


What is boolean in c?

614


an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational

812


What is the difference between array and pointer?

570