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

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between functions abs() and fabs()?

641


What is the significance of an algorithm to C programming?

592


Where can I get an ansi-compatible lint?

634


How do you override a defined macro?

693


What is volatile keyword in c?

577






Is c object oriented?

534


How do I create a directory? How do I remove a directory (and its contents)?

600


in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above

630


Explain how can I manipulate strings of multibyte characters?

773


What is scanf_s in c?

629


in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures

674


What will the code below print when it is executed?   int x = 3, y = 4;         if (x = 4)                 y = 5;         else                 y = 2;         printf ("x=%d, y=%d ",x,y);

1345


How pointers are declared?

556


Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers

1420


Explain main function in c?

620